diff options
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; };
|