diff options
author | lordjaxom <lordjaxom> | 2004-12-08 18:48:39 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-12-08 18:48:39 +0000 |
commit | 5382d18d05d358bb1c313c642395e835aa44a6a0 (patch) | |
tree | 2b5ef58620b3640c5b21e8eafe92ee4b266b1d30 /i18n.h | |
parent | eb2f2c9600e8f69788232582191b141002bcd522 (diff) | |
download | vdr-plugin-text2skin-5382d18d05d358bb1c313c642395e835aa44a6a0.tar.gz vdr-plugin-text2skin-5382d18d05d358bb1c313c642395e835aa44a6a0.tar.bz2 |
1.0-pre1v1.0-pre1
Diffstat (limited to 'i18n.h')
-rw-r--r-- | i18n.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ /* - * $Id: i18n.h,v 1.3 2004/06/22 16:48:03 lordjaxom Exp $ + * $Id: i18n.h,v 1.1.1.1 2004/11/19 16:45:31 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_I18N_H @@ -13,7 +13,7 @@ extern const tI18nPhrase Phrases[]; class cText2SkinI18n: public cText2SkinFile { private: - string mIdentity; + std::string mIdentity; tI18nPhrase *mPhrases; int mNumPhrases; @@ -24,8 +24,8 @@ public: cText2SkinI18n(const char *Skin); virtual ~cText2SkinI18n(); - virtual bool Load(const string &Filename); - string Translate(const string &Text) { return I18nTranslate(Text.c_str(), mIdentity.c_str()); } + virtual bool Load(const std::string &Filename); + std::string Translate(const std::string &Text) { return I18nTranslate(Text.c_str(), mIdentity.c_str()); } }; #endif // VDR_TEXT2SKIN_I18N_H |