diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2022-01-29 17:41:02 +0100 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2022-06-25 13:12:24 +0200 |
commit | 519a87a4715d4479884ff347ccbc3cd564ea5ba9 (patch) | |
tree | 67357275d9ec055d8f693dc668ef523622f1307a /searchtimer.c | |
parent | a87a1db7c2fc5ec4adba0f625501781b0c168338 (diff) | |
download | vdr-plugin-tvguide-519a87a4715d4479884ff347ccbc3cd564ea5ba9.tar.gz vdr-plugin-tvguide-519a87a4715d4479884ff347ccbc3cd564ea5ba9.tar.bz2 |
Adapt epgsearch "allow empty" in searchtimer edit
Diffstat (limited to 'searchtimer.c')
-rw-r--r-- | searchtimer.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/searchtimer.c b/searchtimer.c index bfc3757..8df77b5 100644 --- a/searchtimer.c +++ b/searchtimer.c @@ -554,6 +554,12 @@ void cTVGuideSearchTimer::GetSearchModes(std::vector<std::string> *searchModes) searchModes->push_back(tr("fuzzy")); } +void cTVGuideSearchTimer::GetSubTitleModes(std::vector<std::string> *subTitleModes) { + subTitleModes->push_back(trVDR("no")); + subTitleModes->push_back(trVDR("yes")); + subTitleModes->push_back(tr("allow empty")); +} + void cTVGuideSearchTimer::GetUseChannelModes(std::vector<std::string> *useChannelModes) { useChannelModes->push_back(tr("No")); useChannelModes->push_back(tr("Interval")); |