diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-05-28 15:10:08 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-05-28 15:10:08 +0200 |
commit | 9847c7571dc8f76301dcff7a6eff8075f2179b09 (patch) | |
tree | f4b1284beee812f96e5b11e51c253003877a977a /channels.c | |
parent | 43551831500e249b2dcb8557910ad234f46564cc (diff) | |
download | vdr-9847c7571dc8f76301dcff7a6eff8075f2179b09.tar.gz vdr-9847c7571dc8f76301dcff7a6eff8075f2179b09.tar.bz2 |
Removed all the compatibility '#if APIVERSNUM...' stuff and instead increased the API version number
Diffstat (limited to 'channels.c')
-rw-r--r-- | channels.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: channels.c 1.52 2006/05/28 10:14:18 kls Exp $ + * $Id: channels.c 1.53 2006/05/28 15:03:40 kls Exp $ */ #include "channels.h" @@ -925,8 +925,6 @@ int cChannels::GetNextNormal(int Idx) return channel ? Idx : -1; } -#if APIVERSNUM != 10400 -#warning ******* API version changed - activate new code int cChannels::GetPrevNormal(int Idx) { cChannel *channel = Get(--Idx); @@ -934,7 +932,6 @@ int cChannels::GetPrevNormal(int Idx) channel = Get(--Idx); return channel ? Idx : -1; } -#endif void cChannels::ReNumber( void ) { |