diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 8 |
1 files changed, 4 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.h 1.228 2005/09/14 16:04:09 kls Exp $ + * $Id: config.h 1.230 2005/10/01 10:41:33 kls Exp $ */ #ifndef __CONFIG_H @@ -19,8 +19,8 @@ #include "i18n.h" #include "tools.h" -#define VDRVERSION "1.3.33" -#define VDRVERSNUM 10333 // Version * 10000 + Major * 100 + Minor +#define VDRVERSION "1.3.34" +#define VDRVERSNUM 10334 // Version * 10000 + Major * 100 + Minor #define MAXPRIORITY 99 #define MAXLIFETIME 99 @@ -91,7 +91,7 @@ public: const char *FileName(void) { return fileName; } bool Load(const char *FileName = NULL, bool AllowComments = false, bool MustExist = false) { - Clear(); + cConfig<T>::Clear(); if (FileName) { free(fileName); fileName = strdup(FileName); |