summaryrefslogtreecommitdiff
path: root/searchtimer.c
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-04-09 18:25:58 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-04-14 13:58:07 +0200
commit6e8378743714df291cd421e6764145fc3bf00cbc (patch)
tree5ed402237b0f38ce92fa01a80dc5c198b680e743 /searchtimer.c
parent333a3d397f0a8bbefaef720bd086d61bb10c839c (diff)
downloadvdr-plugin-tvguide-6e8378743714df291cd421e6764145fc3bf00cbc.tar.gz
vdr-plugin-tvguide-6e8378743714df291cd421e6764145fc3bf00cbc.tar.bz2
Channelgroup in cRecMenuSearchTimerEdit
Diffstat (limited to 'searchtimer.c')
-rw-r--r--searchtimer.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/searchtimer.c b/searchtimer.c
index 6f191f4..a7b7141 100644
--- a/searchtimer.c
+++ b/searchtimer.c
@@ -577,7 +577,6 @@ void cTVGuideSearchTimer::GetSearchModes(std::vector<std::string> *searchModes)
searchModes->push_back(tr("regular expression"));
}
-
void cTVGuideSearchTimer::Dump(void) {
esyslog("tvguide searchtimer: strTimer: %s", strTimer.c_str());
esyslog("tvguide searchtimer: ID: %d", ID);
@@ -617,3 +616,10 @@ void cTVGuideSearchTimer::SetStopChannel(int stopChannel)
channelMax = Channels.GetByNumber(stopChannel);
#endif
};
+
+void cTVGuideSearchTimer::GetUseChannelModes(std::vector<std::string> *useChannelModes) {
+ useChannelModes->push_back(tr("No"));
+ useChannelModes->push_back(tr("Interval"));
+ useChannelModes->push_back(tr("Channel Group"));
+ useChannelModes->push_back(tr("only FTA"));
+}