summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/setup.c b/setup.c
index 56e9fd7..9b69dc7 100644
--- a/setup.c
+++ b/setup.c
@@ -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;
}