diff options
author | Frank Neumann <fnu@yavdr.org> | 2017-07-02 12:15:01 +0200 |
---|---|---|
committer | Frank Neumann <fnu@yavdr.org> | 2017-07-02 12:17:25 +0200 |
commit | 8f7954da2488ced734c30e7c2704b92a44e6e1ad (patch) | |
tree | 7ff627dd39359b94e95165ed03caf373f8838d85 /setup.c | |
parent | 2dc242d7aefb6ad68e65b548530eb52b7e981e9f (diff) | |
download | vdr-plugin-text2skin-master.tar.gz vdr-plugin-text2skin-master.tar.bz2 |
Diffstat (limited to 'setup.c')
-rw-r--r-- | setup.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -15,8 +15,7 @@ cText2SkinSetup::cText2SkinSetup(void): CheckTimerConflict(false), MaxCacheFill(25), MaxChars(100), - TabWidth(false), - SupportOldSkins(true) + TabWidth(false) { } @@ -30,7 +29,6 @@ bool cText2SkinSetup::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "MaxCacheFill") == 0) MaxCacheFill = atoi(Value); else if (strcmp(Name, "MaxChars") == 0) MaxChars = atoi(Value); else if (strcmp(Name, "TabWidth") == 0) TabWidth = atoi(Value); - else if (strcmp(Name, "SupportOldSkins") == 0) SupportOldSkins = atoi(Value); else return false; return true; } |