summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-02-25 14:17:56 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-02-25 14:17:56 +0100
commit9dc73da7f506c9efc7b028e21b60a2d916a5fbc9 (patch)
tree7d4f363771a54634b618c1bd51a27366018151e2 /config.c
parent40f4cef75ed6abffc68a01d1dd6ad132af17753c (diff)
downloadvdr-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.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/config.c b/config.c
index 4e469ab9..b829d3a7 100644
--- a/config.c
+++ b/config.c
@@ -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);