summaryrefslogtreecommitdiff
path: root/epgsearchsetup.c
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger (at) gmx (dot) de>2008-09-19 23:57:32 +0200
committerChristian Wieninger <cwieninger (at) gmx (dot) de>2008-09-19 23:57:32 +0200
commit6dbdb639ed4ee6ce5d446bd40ec88920eb8b0ee5 (patch)
tree5f9b9bad371c528fe04a925186edb8a2291e3bd9 /epgsearchsetup.c
parentfd738cd2046620a3b7e96fb5884aa60b14b2f763 (diff)
downloadvdr-plugin-epgsearch-6dbdb639ed4ee6ce5d446bd40ec88920eb8b0ee5.tar.gz
vdr-plugin-epgsearch-6dbdb639ed4ee6ce5d446bd40ec88920eb8b0ee5.tar.bz2
changed the maximum number of days for a timer conflict check from 99 to 14
Diffstat (limited to 'epgsearchsetup.c')
-rw-r--r--epgsearchsetup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epgsearchsetup.c b/epgsearchsetup.c
index b34337d..2332a94 100644
--- a/epgsearchsetup.c
+++ b/epgsearchsetup.c
@@ -764,7 +764,7 @@ void cMenuSetupTimerConflicts::Set()
AddHelp(tr("Help$If a timer with priority below the given value will fail it will not be classified as important. Only important conflicts will produce an OSD message about the conflict after an automatic conflict check."));
Add(new cMenuEditIntItem(tr("Ignore conflict duration less ... min."), &data->checkMinDuration, 0, 999));
AddHelp(tr("Help$If a conflicts duration is less then the given number of minutes it will not be classified as important. Only important conflicts will produce an OSD message about the conflict after an automatic conflict check."));
- Add(new cMenuEditIntItem(tr("Only check within next ... days"), &data->checkMaxDays, 1, 99));
+ Add(new cMenuEditIntItem(tr("Only check within next ... days"), &data->checkMaxDays, 1, 14));
AddHelp(tr("Help$This value reduces the conflict check to the given range of days. All other conflicts are classified as 'not yet important'."));
cOsdItem* sep = new cOsdItem(tr("--- Automatic checking ---"));