summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-05-28 13:57:08 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-05-28 13:57:08 +0200
commitae3da0bcec271892b4e4aa1c34a0eb06c3856035 (patch)
treeaeac8d6c6d481f8cafc75d6ac9878af0cba3634a /channels.h
parent7701acd968c91de94c1d0ae184a0f746c4ae5844 (diff)
downloadvdr-ae3da0bcec271892b4e4aa1c34a0eb06c3856035.tar.gz
vdr-ae3da0bcec271892b4e4aa1c34a0eb06c3856035.tar.bz2
Made cChannel::GetChannelID() inline
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels.h b/channels.h
index 297aab55..3cb7e8f8 100644
--- a/channels.h
+++ b/channels.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: channels.h 1.31 2005/05/28 09:47:23 kls Exp $
+ * $Id: channels.h 1.32 2005/05/28 13:57:08 kls Exp $
*/
#ifndef __CHANNELS_H
@@ -179,7 +179,7 @@ public:
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;
+ tChannelID GetChannelID(void) const { return tChannelID(source, nid, (nid || tid) ? tid : Transponder(), sid, rid); }
int Modification(int Mask = CHANNELMOD_ALL);
bool SetSatTransponderData(int Source, int Frequency, char Polarization, int Srate, int CoderateH);
bool SetCableTransponderData(int Source, int Frequency, int Modulation, int Srate, int CoderateH);