summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
authorMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2015-12-12 15:18:14 +0100
committerMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2015-12-12 15:18:14 +0100
commit4f9b3886780382addf8f233905ca9d0b738ebf5a (patch)
treeda1456942179f040df8e3a862b263112b67cc2a5 /setup.c
parente00fe192159433435b5f6b531cb6895c091d76de (diff)
downloadskin-flatplus-4f9b3886780382addf8f233905ca9d0b738ebf5a.tar.gz
skin-flatplus-4f9b3886780382addf8f233905ca9d0b738ebf5a.tar.bz2
add support for vdr-2.3.1
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/setup.c b/setup.c
index 96336d08..2c722a01 100644
--- a/setup.c
+++ b/setup.c
@@ -273,8 +273,6 @@ void cFlatSetup::Store(void) {
SetupStore("DiskUsageFree", Config.DiskUsageFree);
SetupStore("TopBarFontClockScale", dtoa(Config.TopBarFontClockScale));
SetupStore("TimeSecsScale", dtoa(Config.TimeSecsScale));
- SetupStore("ChannelBitrateShow", Config.ChannelBitrateShow);
- SetupStore("ChannelBitrateShowCalcInterval", Config.ChannelBitrateShowCalcInterval);
SetupStore("TopBarHideClockText", Config.TopBarHideClockText);
SetupStore("ChannelTimeLeft", Config.ChannelTimeLeft);
SetupStore("MenuFullOsd", Config.MenuFullOsd);
@@ -461,10 +459,8 @@ bool cFlatSetupGeneral::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "ScrollerType") == 0) SetupConfig->ScrollerType = atoi(Value);
else if (strcmp(Name, "DiskUsageShort") == 0) SetupConfig->DiskUsageShort = atoi(Value);
else if (strcmp(Name, "DiskUsageFree") == 0) SetupConfig->DiskUsageFree = atoi(Value);
- else if (strcmp(Name, "ChannelBitrateShow") == 0) SetupConfig->ChannelBitrateShow = atoi(Value);
else if (strcmp(Name, "TopBarFontClockScale") == 0) SetupConfig->TopBarFontClockScale = atod(Value);
else if (strcmp(Name, "TimeSecsScale") == 0) SetupConfig->TimeSecsScale = atod(Value);
- else if (strcmp(Name, "ChannelBitrateShowCalcInterval") == 0) SetupConfig->ChannelBitrateShowCalcInterval = atoi(Value);
else if (strcmp(Name, "TopBarHideClockText") == 0) SetupConfig->TopBarHideClockText = atoi(Value);
else if (strcmp(Name, "ChannelTimeLeft") == 0) SetupConfig->ChannelTimeLeft = atoi(Value);
else if (strcmp(Name, "MenuFullOsd") == 0) SetupConfig->MenuFullOsd = atoi(Value);
@@ -634,8 +630,6 @@ void cFlatSetupGeneral::SaveCurrentSettings(void) {
Config.Store("DiskUsageFree", SetupConfig->DiskUsageFree, *Filename);
Config.Store("TopBarFontClockScale", dtoa(Config.TopBarFontClockScale), *Filename);
Config.Store("TimeSecsScale", dtoa(Config.TimeSecsScale), *Filename);
- Config.Store("ChannelBitrateShow", SetupConfig->ChannelBitrateShow, *Filename);
- Config.Store("ChannelBitrateShowCalcInterval", SetupConfig->ChannelBitrateShowCalcInterval, *Filename);
Config.Store("TopBarHideClockText", SetupConfig->TopBarHideClockText, *Filename);
Config.Store("ChannelTimeLeft", SetupConfig->ChannelTimeLeft, *Filename);
Config.Store("MenuFullOsd", SetupConfig->MenuFullOsd, *Filename);
@@ -863,7 +857,6 @@ void cFlatSetupChannelInfo::Setup(void) {
Add(new cMenuEditBoolItem(tr("Colors for signal quality"), &SetupConfig->SignalQualityUseColors));
Add(new cMenuEditBoolItem(tr("Show resolution & aspect"), &SetupConfig->ChannelResolutionAspectShow));
Add(new cMenuEditBoolItem(tr("Show format (hd/sd)"), &SetupConfig->ChannelFormatShow));
- Add(new cMenuEditBoolItem(tr("Show video/audio bitrate"), &SetupConfig->ChannelBitrateShow));
Add(new cMenuEditBoolItem(tr("Simple aspect & format"), &SetupConfig->ChannelSimpleAspectFormat));
static cPlugin *pDVBApi = cPluginManager::GetPlugin("dvbapi");
if (!pDVBApi) {