diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2012-09-10 19:44:32 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2012-09-10 19:44:32 +0200 |
commit | 6b94d598a0f91f37173ef428691d2ee111265024 (patch) | |
tree | ed519d2bccfed628d0ed3da0466448e2d669f625 /menu_conflictcheck.c | |
parent | 415ef4607e0cb291b0f5fa68620ac13d3274404b (diff) | |
download | vdr-plugin-epgsearch-6b94d598a0f91f37173ef428691d2ee111265024.tar.gz vdr-plugin-epgsearch-6b94d598a0f91f37173ef428691d2ee111265024.tar.bz2 |
now setting the menu category introduced in vdr-1.7.28 (bug tracker #1059)
Diffstat (limited to 'menu_conflictcheck.c')
-rw-r--r-- | menu_conflictcheck.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/menu_conflictcheck.c b/menu_conflictcheck.c index 0d49c23..752b738 100644 --- a/menu_conflictcheck.c +++ b/menu_conflictcheck.c @@ -62,6 +62,9 @@ cMenuConflictCheckItem::cMenuConflictCheckItem(cConflictCheckTime* Ct, cConflict cMenuConflictCheck::cMenuConflictCheck() :cOsdMenu("", 4, 12, 4, 5, 30) { +#if VDRVERSNUM >= 10728 + SetMenuCategory(mcSchedule); +#endif showAll = false; lastSel = -1; BuildList(); @@ -194,6 +197,9 @@ bool cMenuConflictCheckDetailsItem::Update(bool Force) cMenuConflictCheckDetails::cMenuConflictCheckDetails(cConflictCheckTimerObj* TimerObj, cConflictCheck* ConflictCheck) :cOsdMenu(tr("Timer conflicts"), 2, 4, 13, 3, 2) { +#if VDRVERSNUM >= 10728 + SetMenuCategory(mcSchedule); +#endif timerObj = TimerObj; checktime = timerObj->conflCheckTime; conflictCheck = ConflictCheck; |