diff options
author | louis <louis.braun@gmx.de> | 2013-07-12 16:27:29 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-07-12 16:27:29 +0200 |
commit | ba3d6c07d07b1b0cc08c2d98d9e98802f2779acf (patch) | |
tree | c6afdd311a9cde547b12f9f4cb7aacbbfd373009 /config.c | |
parent | 6a6e477b7af85f7e67859333a6d3528ad33ebe85 (diff) | |
download | vdr-plugin-tvguide-ba3d6c07d07b1b0cc08c2d98d9e98802f2779acf.tar.gz vdr-plugin-tvguide-ba3d6c07d07b1b0cc08c2d98d9e98802f2779acf.tar.bz2 |
added possibility to replace original VDR schedules menu
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -17,6 +17,7 @@ enum { cTvguideConfig::cTvguideConfig() {
showMainMenuEntry = 1;
+ replaceOriginalSchedule = 0;
osdWidth = 0;
osdHeight = 0;
displayMode = eHorizontal;
@@ -252,6 +253,7 @@ void cTvguideConfig::loadTheme() { bool cTvguideConfig::SetupParse(const char *Name, const char *Value) {
if (strcmp(Name, "timeFormat") == 0) timeFormat = atoi(Value);
else if (strcmp(Name, "showMainMenuEntry") == 0) showMainMenuEntry = atoi(Value);
+ else if (strcmp(Name, "replaceOriginalSchedule") == 0) replaceOriginalSchedule = atoi(Value);
else if (strcmp(Name, "themeIndex") == 0) themeIndex = atoi(Value);
else if (strcmp(Name, "displayMode") == 0) displayMode = atoi(Value);
else if (strcmp(Name, "showTimeInGrid") == 0) showTimeInGrid = atoi(Value);
|