diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-14 09:47:06 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-14 09:47:06 +0200 |
commit | d7053e30ac3e971e8b27d2ae16b000e60cf302e3 (patch) | |
tree | 398d359550521e656503fd31d24804321cb5152b /channels.h | |
parent | 06e038b6fb9f2fe8882a8f5ffd9112504e3a45ad (diff) | |
download | vdr-d7053e30ac3e971e8b27d2ae16b000e60cf302e3.tar.gz vdr-d7053e30ac3e971e8b27d2ae16b000e60cf302e3.tar.bz2 |
Using '>' as separator for short channel names on cable channels
Diffstat (limited to 'channels.h')
-rw-r--r-- | channels.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: channels.h 1.28 2005/05/07 13:07:09 kls Exp $ + * $Id: channels.h 1.29 2005/05/14 09:31:45 kls Exp $ */ #ifndef __CHANNELS_H @@ -176,9 +176,9 @@ public: int Transmission(void) const { return transmission; } int Guard(void) const { return guard; } int Hierarchy(void) const { return hierarchy; } - bool IsCable(void) const { return (source & cSource::st_Mask) == cSource::stCable; } - bool IsSat(void) const { return (source & cSource::st_Mask) == cSource::stSat; } - bool IsTerr(void) const { return (source & cSource::st_Mask) == cSource::stTerr; } + bool IsCable(void) const { return cSource::IsCable(source); } + bool IsSat(void) const { return cSource::IsSat(source); } + bool IsTerr(void) const { return cSource::IsTerr(source); } tChannelID GetChannelID(void) const; int Modification(int Mask = CHANNELMOD_ALL); bool SetSatTransponderData(int Source, int Frequency, char Polarization, int Srate, int CoderateH); |