summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
authorThomas Günther <tom@toms-cafe.de>2009-06-21 03:04:34 +0200
committerThomas Günther <tom@toms-cafe.de>2009-06-21 03:04:34 +0200
commitea25399458d35ca25e3477200baa1b393a577b37 (patch)
tree93d9b12177384e6aff92adb36342f02291444473 /setup.c
parentc51a331d720c7e2fb5252c6cf4c1ddd4b4b8a8a1 (diff)
downloadvdr-plugin-text2skin-ea25399458d35ca25e3477200baa1b393a577b37.tar.gz
vdr-plugin-text2skin-ea25399458d35ca25e3477200baa1b393a577b37.tar.bz2
Removed backward compatibility to VDR < 1.6.0 (closes #137)
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/setup.c b/setup.c
index 9abc238..8d959eb 100644
--- a/setup.c
+++ b/setup.c
@@ -12,13 +12,9 @@ cText2SkinSetup::cText2SkinSetup(void) {
MenuScrollbar = false;
MarqueeLeftRight = true;
MarqueeReset = false;
-#if VDRVERSNUM >= 10344
ShowAux = true;
StripAux = true;
-#endif
-#if VDRVERSNUM >= 10330
CheckTimerConflict = false;
-#endif
MaxCacheFill = 25;
}
@@ -26,13 +22,9 @@ bool cText2SkinSetup::SetupParse(const char *Name, const char *Value) {
if (strcmp(Name, "MenuScrollbar") == 0) MenuScrollbar = atoi(Value);
else if (strcmp(Name, "MarqueeLeftRight") == 0) MarqueeLeftRight = atoi(Value);
else if (strcmp(Name, "MarqueeReset") == 0) MarqueeReset = atoi(Value);
-#if VDRVERSNUM >= 10344
else if (strcmp(Name, "ShowAux") == 0) ShowAux = atoi(Value);
else if (strcmp(Name, "StripAux") == 0) StripAux = atoi(Value);
-#endif
-#if VDRVERSNUM >= 10330
else if (strcmp(Name, "CheckTimerConflict") == 0) CheckTimerConflict = atoi(Value);
-#endif
else if (strcmp(Name, "MaxCacheFill") == 0) MaxCacheFill = atoi(Value);
else return false;
return true;