diff options
author | lordjaxom <lordjaxom> | 2005-01-07 21:46:51 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-07 21:46:51 +0000 |
commit | 929c7bfe6c2f303ca2abcff5ad7a574b660fb796 (patch) | |
tree | 84c6266b237e3072438c4edf53006f4224382633 /common.c | |
parent | 8d22c6a5b82a53b29d98ccb0c706eb820ac9a7a9 (diff) | |
download | vdr-plugin-text2skin-929c7bfe6c2f303ca2abcff5ad7a574b660fb796.tar.gz vdr-plugin-text2skin-929c7bfe6c2f303ca2abcff5ad7a574b660fb796.tar.bz2 |
- consequent use of cxType for all strings and numbers
Diffstat (limited to 'common.c')
-rw-r--r-- | common.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* - * $Id: common.c,v 1.5 2004/12/22 15:38:18 lordjaxom Exp $ + * $Id: common.c,v 1.6 2005/01/07 21:46:51 lordjaxom Exp $ */ #include "common.h" @@ -138,7 +138,7 @@ cxType TimeType(time_t Time, const std::string &Format) } else return Time; } - return cxType::False; + return false; } cxType DurationType(uint Index, const std::string &Format) @@ -213,7 +213,7 @@ cxType DurationType(uint Index, const std::string &Format) } else return (int)Index; } - return cxType::False; + return false; } bool ParseVar(const char *Text, const char *Name, std::string &Value) |