diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-04 13:14:14 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-04 13:16:13 +0200 |
commit | 0b37464dd08361f3cc8ac2a3ee25a068418c4419 (patch) | |
tree | 6d71c2c42c1c4f3142bc19bcc44beefc8af2aba0 /searchtimer.h | |
parent | cf171d8732e18a6889188e2ad25b392500cb6e88 (diff) | |
download | vdr-plugin-tvguide-0b37464dd08361f3cc8ac2a3ee25a068418c4419.tar.gz vdr-plugin-tvguide-0b37464dd08361f3cc8ac2a3ee25a068418c4419.tar.bz2 |
Change SetStartChannel() and SetStopChannel()
Diffstat (limited to 'searchtimer.h')
-rw-r--r-- | searchtimer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searchtimer.h b/searchtimer.h index 2494996..b47dc97 100644 --- a/searchtimer.h +++ b/searchtimer.h @@ -90,8 +90,8 @@ public: void SetUseSubtitle(bool useSubtitle) { this->useSubtitle = useSubtitle; };
void SetUseDesription(bool useDescription) { this->useDescription = useDescription; };
void SetUseChannel(int useChannel) { this->useChannel = useChannel; };
- void SetStartChannel(int startChannel);
- void SetStopChannel(int stopChannel);
+ void SetStartChannel(const cChannel *channelMin) { this->channelMin = channelMin; };
+ void SetStopChannel(const cChannel *channelMax) { this->channelMax = channelMax; };
void SetChannelGroup(std::string channelGroup) { this->channelGroup = channelGroup; };
void SetUseTime(bool useTime) { this->useTime = useTime; };
void SetStartTime(int startTime) { this->startTime = startTime; };
|