diff options
author | Andreas Brugger <brougs78@gmx.net> | 2006-01-07 12:00:00 +0100 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2009-06-03 01:37:19 +0200 |
commit | eb6eaf285edd82c212810f066313f93dc4a8a129 (patch) | |
tree | ccd809304ccfaf710db31e5ba765b92961a821ca /status.c | |
parent | eeda27b9d069161db0261f6e2f51ac9463bde910 (diff) | |
download | vdr-plugin-text2skin-eb6eaf285edd82c212810f066313f93dc4a8a129.tar.gz vdr-plugin-text2skin-eb6eaf285edd82c212810f066313f93dc4a8a129.tar.bz2 |
2006-01-07: Version 1.1-cvs_ext-0.5 (vdr-text2skin-1.1-cvs_ext-0.5.diff)
- modifications to compile with vdr-versions >= 1.3.18
- added tokens:
OsdWidth, OsdHeight
- activating the token ReplayVideoAR
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -267,6 +267,7 @@ cxType cText2SkinStatus::GetTokenData(const txToken &Token) : (cxType)false; case tTimerConflict: +#if VDRVERSNUM >= 10330 if (Text2SkinSetup.CheckTimerConflict) { bool conflict; @@ -291,7 +292,9 @@ cxType cText2SkinStatus::GetTokenData(const txToken &Token) { return false; } - +#endif + +#if VDRVERSNUM >= 10325 case tReplayName: return mReplay != NULL ? (cxType)mReplay->Name() @@ -356,7 +359,6 @@ cxType cText2SkinStatus::GetTokenData(const txToken &Token) } return false; - /* case tReplayVideoAR: if (mReplay) { @@ -378,7 +380,7 @@ cxType cText2SkinStatus::GetTokenData(const txToken &Token) } } return false; - */ +#endif case tCurrentRecording: Dprintf("token attrib type is: %d, number: %d\n", Token.Attrib.Type, Token.Attrib.Number); |