diff options
| author | Jochen Dolze <vdr@dolze.de> | 2010-11-12 17:22:13 +0100 |
|---|---|---|
| committer | Jochen Dolze <vdr@dolze.de> | 2010-11-12 17:22:13 +0100 |
| commit | e2b8dc50f54ce91a6c5c26a4b5c798fd94b488e3 (patch) | |
| tree | 8c60e111d365f057e566776a7e8e4afc8239c171 /config.cpp | |
| parent | 94dd6f768ab19fa3af4ff2a9b72a6c18951e7601 (diff) | |
| download | vdr-plugin-tvonscreen-e2b8dc50f54ce91a6c5c26a4b5c798fd94b488e3.tar.gz vdr-plugin-tvonscreen-e2b8dc50f54ce91a6c5c26a4b5c798fd94b488e3.tar.bz2 | |
Dropped XLFont option, code cleanup
Diffstat (limited to 'config.cpp')
| -rw-r--r-- | config.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -19,7 +19,6 @@ tvonscreenConfig tvonscreenCfg; tvonscreenConfig::tvonscreenConfig(void) { showLogos=false; - XLfonts=true; noInfoLine=false; showChannels=true; bwlogos=false; @@ -40,7 +39,6 @@ tvonscreenConfig::tvonscreenConfig(void) bool tvonscreenConfig::SetupParse(const char *Name, const char *Value) { if (strcmp(Name,"showLogos")==0) showLogos = atoi(Value); - else if (strcmp(Name,"XLfonts")==0) XLfonts = atoi(Value); else if (strcmp(Name,"noInfoLine")==0) noInfoLine = atoi(Value); else if (strcmp(Name,"showChannels")==0) showChannels = atoi(Value); else if (strcmp(Name,"bwlogos")==0) bwlogos = atoi(Value); @@ -118,8 +116,6 @@ tvonscreenConfigPage::tvonscreenConfigPage(void) : cMenuSetupPage() Add(new cMenuEditBoolItem(tr("enable color problem work around"), &m_NewConfig.colorworkaround)); } - Add(new cMenuEditBoolItem(tr("use XL fonts"), - &m_NewConfig.XLfonts)); Add(new cMenuEditBoolItem(tr("hide info line"), &m_NewConfig.noInfoLine)); @@ -144,7 +140,6 @@ tvonscreenConfigPage::~tvonscreenConfigPage() void tvonscreenConfigPage::Store(void) { SetupStore("showLogos", m_NewConfig.showLogos); - SetupStore("XLfonts", m_NewConfig.XLfonts); SetupStore("noInfoLine", m_NewConfig.noInfoLine); SetupStore("showChannels", m_NewConfig.showChannels); SetupStore("bwlogos", m_NewConfig.bwlogos); |
