diff options
author | lordjaxom <lordjaxom> | 2005-01-15 21:02:40 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-15 21:02:40 +0000 |
commit | d94cae36d3e53814684864b3f4a8017180d643f5 (patch) | |
tree | b4ae958d52d5207b04d0de38d0e91d5fa02883d6 /status.c | |
parent | 42d54c80ef8591d5ad3ec406e37a138bd8c962e1 (diff) | |
download | vdr-plugin-text2skin-d94cae36d3e53814684864b3f4a8017180d643f5.tar.gz vdr-plugin-text2skin-d94cae36d3e53814684864b3f4a8017180d643f5.tar.bz2 |
- fixed last language initialization
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,5 +1,5 @@ /* - * $Id: status.c,v 1.6 2005/01/11 18:10:39 lordjaxom Exp $ + * $Id: status.c,v 1.7 2005/01/15 21:02:40 lordjaxom Exp $ */ #include "status.h" @@ -8,7 +8,6 @@ const std::string ReplayNames[__REPLAY_COUNT__] = { "", "normal", "mp3", "mplayer", "dvd", "vcd", "image" }; -cText2SkinStatus *cText2SkinStatus::mStatus = NULL; cText2SkinStatus Text2SkinStatus; cText2SkinStatus::cText2SkinStatus(void): @@ -19,9 +18,8 @@ cText2SkinStatus::cText2SkinStatus(void): mRecordings(), mCurrentRecording(0), mNextRecording(0), - mLastLanguage(Setup.OSDLanguage) + mLastLanguage(0) { - mStatus = this; } void cText2SkinStatus::SetRender(cText2SkinRender *Render) |