diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2020-03-28 14:51:21 +0100 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2020-03-29 11:51:39 +0200 |
commit | 883584db77a55610e6003303fb58b5e45bff0886 (patch) | |
tree | 1327ce7c50b00f1d2a02f582ca17b0de271ed9d3 /config.c | |
parent | 97a994ac366bd3772e3f535a767fffc3bcf1c4ba (diff) | |
download | skin-lcarsng-883584db77a55610e6003303fb58b5e45bff0886.tar.gz skin-lcarsng-883584db77a55610e6003303fb58b5e45bff0886.tar.bz2 |
Cleanup
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1,7 +1,3 @@ -/* - * See the README file for copyright information and how to reach the author. - */ - #include <vdr/plugin.h> #include "config.h" @@ -51,7 +47,7 @@ bool cLCARSNGConfig::SetupParse(const char *Name, const char *Value) else if (!strcasecmp(Name, "ChannelMenue")) mcChannelScaled = atoi(Value); else if (!strcasecmp(Name, "TimerMenue")) mcTimerScaled = atoi(Value); else if (!strcasecmp(Name, "RecordingMenue")) mcRecordingScaled = atoi(Value); -// else if (!strcasecmp(Name, "PluginMenue")) mcPluginScaled = atoi(Value); + else if (!strcasecmp(Name, "PluginMenue")) mcPluginScaled = atoi(Value); else if (!strcasecmp(Name, "SetupMenue")) mcSetupScaled = atoi(Value); else if (!strcasecmp(Name, "CommandMenue")) mcCommandScaled = atoi(Value); else if (!strcasecmp(Name, "EventMenue")) mcEventScaled = atoi(Value); |