summaryrefslogtreecommitdiff
path: root/menu.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 /menu.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 'menu.c')
-rw-r--r--menu.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/menu.c b/menu.c
index 067ff7b..7a80281 100644
--- a/menu.c
+++ b/menu.c
@@ -19,15 +19,11 @@ void cText2SkinSetupPage::Setup(void) {
Add(new cMenuEditBoolItem(tr("Show scrollbar in the menus"), &mData.MenuScrollbar));
Add(new cMenuEditBoolItem(tr("Scrolling behaviour"), &mData.MarqueeLeftRight, tr("to the left"), tr("left and right")));
Add(new cMenuEditBoolItem(tr("Reset Marquee for new item"), &mData.MarqueeReset));
-#if VDRVERSNUM >= 10344
Add(new cMenuEditBoolItem(tr("Show auxiliary infos of recordings"), &mData.ShowAux));
if (mData.ShowAux)
// TRANSLATORS: note the leading blanks!
Add(new cMenuEditBoolItem(tr(" Extract known tags"), &mData.StripAux));
-#endif
-#if VDRVERSNUM >= 10330
Add(new cMenuEditBoolItem(tr("Use 'epgsearch' to check timer-conflicts"), &mData.CheckTimerConflict));
-#endif
Add(new cOsdItem(tr("Flush image cache"), osUser1));
Add(new cMenuEditIntItem(tr("Max. image cache size"), &mData.MaxCacheFill));
@@ -42,13 +38,9 @@ void cText2SkinSetupPage::Store(void) {
SetupStore("MenuScrollbar", mData.MenuScrollbar);
SetupStore("MarqueeLeftRight", mData.MarqueeLeftRight);
SetupStore("MarqueeReset", mData.MarqueeReset);
-#if VDRVERSNUM >= 10344
SetupStore("ShowAux", mData.ShowAux);
SetupStore("StripAux", mData.StripAux);
-#endif
-#if VDRVERSNUM >= 10330
SetupStore("CheckTimerConflict", mData.CheckTimerConflict);
-#endif
SetupStore("MaxCacheFill", mData.MaxCacheFill);
Text2SkinSetup = mData;
}