summaryrefslogtreecommitdiff
path: root/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'file.h')
-rw-r--r--file.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/file.h b/file.h
index a941591..7f9a692 100644
--- a/file.h
+++ b/file.h
@@ -1,5 +1,5 @@
/*
- * $Id: file.h,v 1.1 2004/06/02 20:43:05 lordjaxom Exp $
+ * $Id: file.h,v 1.1.1.1 2004/11/19 16:45:31 lordjaxom Exp $
*/
#ifndef VDR_TEXT2SKIN_FILE_H
@@ -10,7 +10,7 @@
class cText2SkinFile {
private:
- string mSkin;
+ std::string mSkin;
protected:
virtual bool Parse(const char *Text) = 0;
@@ -19,9 +19,9 @@ public:
cText2SkinFile(const char *Skin);
virtual ~cText2SkinFile();
- virtual bool Load(const string &Filename);
+ virtual bool Load(const std::string &Filename);
- const string &Skin(void) const { return mSkin; }
+ const std::string &Skin(void) const { return mSkin; }
};
#endif // VDR_TEXT2SKIN_FILE_H