diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-09-08 15:06:09 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-09-08 15:06:09 +0200 |
commit | 782f2683d9476d227c67cff7db0bb392a0bf5f09 (patch) | |
tree | 9c9f40df3b5b7beabb66e3c757940f613d638044 /config.h | |
parent | 5ff1d3571199dfa412e8e1cb7eb2a4f920fdbdd5 (diff) | |
download | vdr-782f2683d9476d227c67cff7db0bb392a0bf5f09.tar.gz vdr-782f2683d9476d227c67cff7db0bb392a0bf5f09.tar.bz2 |
Fixed cTimer::operator=() in case a cTimer variable is assigned to itself; implemented a copy constructor for cTimer
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.268 2006/09/01 12:59:35 kls Exp $ + * $Id: config.h 1.269 2006/09/04 17:44:12 kls Exp $ */ #ifndef __CONFIG_H @@ -21,13 +21,13 @@ // VDR's own version number: -#define VDRVERSION "1.4.2-1" +#define VDRVERSION "1.4.2-2" #define VDRVERSNUM 10402 // Version * 10000 + Major * 100 + Minor // The plugin API's version number: -#define APIVERSION "1.4.2" -#define APIVERSNUM 10402 // Version * 10000 + Major * 100 + Minor +#define APIVERSION "1.4.3" +#define APIVERSNUM 10403 // Version * 10000 + Major * 100 + Minor // When loading plugins, VDR searches them by their APIVERSION, which // may be smaller than VDRVERSION in case there have been no changes to |