diff options
author | mrwastl <mrwastl@users.sourceforge.net> | 2011-10-04 23:06:07 +0200 |
---|---|---|
committer | mrwastl <mrwastl@users.sourceforge.net> | 2011-10-04 23:06:07 +0200 |
commit | cd447f97099fb494716a7e9c2aad1716f456ba63 (patch) | |
tree | a7cb495a4fd68d5d13ccc0cee96fa561afe00fc5 /common.h | |
parent | 2d3832dd913f678f40a748faa4aeb1429bec4df1 (diff) | |
download | vdr-plugin-graphlcd-cd447f97099fb494716a7e9c2aad1716f456ba63.tar.gz vdr-plugin-graphlcd-cd447f97099fb494716a7e9c2aad1716f456ba63.tar.bz2 |
fixed wrong recordinglength with vdr-1.7.x (thx to copperhead for pointing out this one)
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,9 +1,8 @@ #include <glcdskin/string.h> - GLCD::cType TimeType(time_t Time, const std::string &Format); -GLCD::cType DurationType(int Index, const std::string &Format); +GLCD::cType DurationType(int Index, const std::string &Format, double framesPerSecFactor = 1.0); int ParanoiaStrcmp(const char *s1, const char *s2); const std::string SplitText(const std::string &Text, const std::string &Delim, bool firstPart = true); const std::string SplitToken(const std::string &Token, const struct GLCD::tSkinAttrib Attrib, bool extSplit = false); |