diff options
author | lordjaxom <lordjaxom> | 2005-01-31 14:39:23 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-31 14:39:23 +0000 |
commit | a4d70c43a9d2de6b81bd75cae9dcbd9599acc40c (patch) | |
tree | 9bc5c232c10caa788e975f1b13686bc916054521 /xml | |
parent | 54cd8a76eb25b4fb2bef8047ee26e810f6ebd949 (diff) | |
download | vdr-plugin-text2skin-a4d70c43a9d2de6b81bd75cae9dcbd9599acc40c.tar.gz vdr-plugin-text2skin-a4d70c43a9d2de6b81bd75cae9dcbd9599acc40c.tar.bz2 |
- removed unnecessary code and variables
Diffstat (limited to 'xml')
-rw-r--r-- | xml/type.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* - * $Id: type.h,v 1.6 2005/01/23 19:43:28 lordjaxom Exp $ + * $Id: type.h,v 1.7 2005/01/31 14:39:23 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_XML_TYPE_H @@ -23,7 +23,6 @@ private: eType mType; std::string mString; int mNumber; - bool mCache; uint mUpdateIn; public: @@ -35,7 +34,6 @@ public: cxType(bool Value): mType(boolean), mNumber(Value ? 1 : 0), mUpdateIn(0) {} std::string String(void) const; - //std::string String(void); int Number(void) const { return mType == number ? mNumber : atoi(mString.c_str()); } void SetUpdate(uint UpdateIn) { mUpdateIn = UpdateIn; } |