summaryrefslogtreecommitdiff
path: root/status.c
diff options
context:
space:
mode:
authorAndreas Brugger <brougs78@gmx.net>2006-01-07 12:00:00 +0100
committerThomas Günther <tom@toms-cafe.de>2009-06-03 01:37:19 +0200
commiteb6eaf285edd82c212810f066313f93dc4a8a129 (patch)
treeccd809304ccfaf710db31e5ba765b92961a821ca /status.c
parenteeda27b9d069161db0261f6e2f51ac9463bde910 (diff)
downloadvdr-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.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/status.c b/status.c
index b23683a..3df40ab 100644
--- a/status.c
+++ b/status.c
@@ -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);