summaryrefslogtreecommitdiff
path: root/xml
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-01-31 14:39:23 +0000
committerlordjaxom <lordjaxom>2005-01-31 14:39:23 +0000
commita4d70c43a9d2de6b81bd75cae9dcbd9599acc40c (patch)
tree9bc5c232c10caa788e975f1b13686bc916054521 /xml
parent54cd8a76eb25b4fb2bef8047ee26e810f6ebd949 (diff)
downloadvdr-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.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/xml/type.h b/xml/type.h
index 85e4527..e37d99d 100644
--- a/xml/type.h
+++ b/xml/type.h
@@ -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; }