diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-25 14:17:56 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-25 14:17:56 +0100 |
commit | 9dc73da7f506c9efc7b028e21b60a2d916a5fbc9 (patch) | |
tree | 7d4f363771a54634b618c1bd51a27366018151e2 /config.c | |
parent | 40f4cef75ed6abffc68a01d1dd6ad132af17753c (diff) | |
download | vdr-9dc73da7f506c9efc7b028e21b60a2d916a5fbc9.tar.gz vdr-9dc73da7f506c9efc7b028e21b60a2d916a5fbc9.tar.bz2 |
The option "Setup/OSD/Sort timers" has been removed
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 1.141 2006/01/13 15:19:37 kls Exp $ + * $Id: config.c 1.142 2006/02/25 14:12:16 kls Exp $ */ #include "config.h" @@ -240,7 +240,6 @@ cSetup::cSetup(void) EPGLinger = 0; SVDRPTimeout = 300; ZapTimeout = 3; - SortTimers = 1; PrimaryLimit = 0; DefaultPriority = 50; DefaultLifetime = 99; @@ -400,7 +399,6 @@ bool cSetup::Parse(const char *Name, const char *Value) else if (!strcasecmp(Name, "EPGLinger")) EPGLinger = atoi(Value); else if (!strcasecmp(Name, "SVDRPTimeout")) SVDRPTimeout = atoi(Value); else if (!strcasecmp(Name, "ZapTimeout")) ZapTimeout = atoi(Value); - else if (!strcasecmp(Name, "SortTimers")) SortTimers = atoi(Value); else if (!strcasecmp(Name, "PrimaryLimit")) PrimaryLimit = atoi(Value); else if (!strcasecmp(Name, "DefaultPriority")) DefaultPriority = atoi(Value); else if (!strcasecmp(Name, "DefaultLifetime")) DefaultLifetime = atoi(Value); @@ -467,7 +465,6 @@ bool cSetup::Save(void) Store("EPGLinger", EPGLinger); Store("SVDRPTimeout", SVDRPTimeout); Store("ZapTimeout", ZapTimeout); - Store("SortTimers", SortTimers); Store("PrimaryLimit", PrimaryLimit); Store("DefaultPriority", DefaultPriority); Store("DefaultLifetime", DefaultLifetime); |