summaryrefslogtreecommitdiff
path: root/epgsearchsetup.c
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2011-09-14 21:06:45 +0300
committerChristian Wieninger <cwieninger@gmx.de>2011-09-19 19:03:15 +0200
commitbf970a7d42ff0af80b937ff4f5b33cbdbc623af6 (patch)
treee3cbafcd692c63a776867ed2cce6440bb3f105a4 /epgsearchsetup.c
parent4a2d7f52a8c15ff0aaf78066e6b4c52c1a7d87a5 (diff)
downloadvdr-plugin-epgsearch-bf970a7d42ff0af80b937ff4f5b33cbdbc623af6.tar.gz
vdr-plugin-epgsearch-bf970a7d42ff0af80b937ff4f5b33cbdbc623af6.tar.bz2
Remove obsolete VDR < 1.5.3 progressbar support.
Diffstat (limited to 'epgsearchsetup.c')
-rw-r--r--epgsearchsetup.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/epgsearchsetup.c b/epgsearchsetup.c
index 29b9f84..8eacd17 100644
--- a/epgsearchsetup.c
+++ b/epgsearchsetup.c
@@ -39,7 +39,6 @@ The project's page is at http://winni.vdr-developer.org/epgsearch
const char *OkKeyMode[2];
const char *RedKeyMode[2];
const char *BlueKeyMode[2];
-const char *ProgressbarMode[3];
const char *StartMenuMode[2];
const char *AddSubtitleMode[3];
const char *FavoritesMenuMode[4];
@@ -108,10 +107,6 @@ cMenuEPGSearchSetup::cMenuEPGSearchSetup(void)
BlueKeyMode[0] = tr("Standard");
BlueKeyMode[1] = tr("Button$Search");
-
- ProgressbarMode[0] = trVDR("no");
- ProgressbarMode[1] = tr("pipes");
- ProgressbarMode[2] = tr("graphical");
StartMenuMode[0] = trVDR("Button$Schedule");
StartMenuMode[1] = trVDR("Button$Now");
@@ -419,12 +414,8 @@ void cMenuSetupEPGMenus::Set()
Add(new cMenuEditStraItem(tr("Blue key"), &data->bluekeymode, 2, BlueKeyMode));
AddHelp(tr("Help$Choose which standard function ('Switch'/'Info' or 'Search') you like to have on the blue key.\n(Can be toggled with key '0')"));
-#if VDRVERSNUM < 10503
- Add(new cMenuEditStraItem(tr("Show progress in 'Now'"), &data->showProgress, 3, ProgressbarMode));
-#else
Add(new cMenuEditBoolItem(tr("Show progress in 'Now'"), &data->showProgress, trVDR("no"), trVDR("yes")));
-#endif
- AddHelp(tr("Help$Shows a progressbar in 'Overview - Now' that informs about the remaining time of the current event.\nDepending on your selected skin you can choose between 'Pipes' or 'graphical' to get the best look."));
+ AddHelp(tr("Help$Shows a progressbar in 'Overview - Now' that informs about the remaining time of the current event."));
Add(new cMenuEditBoolItem( tr("Show channel numbers"), &data->showChannelNr, trVDR("no"), trVDR("yes")));
AddHelp(tr("Help$Display channel numbers in 'Overview - Now'.\n\n(To completely define your own menu look please inspect the MANUAL)"));
Add(new cMenuEditBoolItem( tr("Show channel separators"), &data->showChannelGroups, trVDR("no"), trVDR("yes")));