diff options
author | louis <louis.braun@gmx.de> | 2013-01-12 17:58:59 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-01-12 17:58:59 +0100 |
commit | d0837be96f032dec191fb56a28f6376efc4dbc4c (patch) | |
tree | 58ba57a81a609f14211de42ca6833690e4782e64 /config.c | |
parent | f73517cef1405ad496dda3cd30838f637cd64524 (diff) | |
download | skin-nopacity-d0837be96f032dec191fb56a28f6376efc4dbc4c.tar.gz skin-nopacity-d0837be96f032dec191fb56a28f6376efc4dbc4c.tar.bz2 |
Added some more information (encrypted, source, transponder, frequency) to channels menu
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -88,6 +88,8 @@ cNopacityConfig::cNopacityConfig() { fontMenuitemLarge = 0; fontMenuitemSchedule = 0; fontMenuitemScheduleSmall = 0; + fontMenuitemChannel = 0; + fontMenuitemChannelSmall = 0; fontMenuitemRecordings = 0; fontMenuitemRecordingsSmall = 0; fontMenuitemDefault = 0; @@ -239,6 +241,8 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "fontMenuitemLarge") == 0) fontMenuitemLarge = atoi(Value); else if (strcmp(Name, "fontMenuitemSchedule") == 0) fontMenuitemSchedule = atoi(Value); else if (strcmp(Name, "fontMenuitemScheduleSmall") == 0) fontMenuitemScheduleSmall = atoi(Value); + else if (strcmp(Name, "fontMenuitemChannel") == 0) fontMenuitemChannel = atoi(Value); + else if (strcmp(Name, "fontMenuitemChannelSmall") == 0) fontMenuitemChannelSmall = atoi(Value); else if (strcmp(Name, "fontMenuitemRecordings") == 0) fontMenuitemRecordings = atoi(Value); else if (strcmp(Name, "fontMenuitemRecordingsSmall") == 0) fontMenuitemRecordingsSmall = atoi(Value); else if (strcmp(Name, "fontMenuitemDefault") == 0) fontMenuitemDefault = atoi(Value); |