From ea25399458d35ca25e3477200baa1b393a577b37 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20G=C3=BCnther?= <tom@toms-cafe.de>
Date: Sun, 21 Jun 2009 03:04:34 +0200
Subject: Removed backward compatibility to VDR < 1.6.0 (closes #137)

---
 menu.c | 8 --------
 1 file changed, 8 deletions(-)

(limited to 'menu.c')

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;
 }
-- 
cgit v1.2.3