diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2013-03-23 20:20:49 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2013-03-23 20:20:49 +0100 |
commit | 3fa5972f0e54eb9d98c520391fd9bcd1c9c574f6 (patch) | |
tree | cb66dac2b8688588bfa0b9444a9e3197d003191a | |
parent | e7ff9bbaf9781546967a2f84c0a307bd4cb080bb (diff) | |
download | vdr-plugin-epgsearch-3fa5972f0e54eb9d98c520391fd9bcd1c9c574f6.tar.gz vdr-plugin-epgsearch-3fa5972f0e54eb9d98c520391fd9bcd1c9c574f6.tar.bz2 |
set menu category to mcTimerEdit in conflict menus, thx to seahawk1986 for his patch
-rw-r--r-- | menu_conflictcheck.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/menu_conflictcheck.c b/menu_conflictcheck.c index 05ec315..562842e 100644 --- a/menu_conflictcheck.c +++ b/menu_conflictcheck.c @@ -62,8 +62,8 @@ cMenuConflictCheckItem::cMenuConflictCheckItem(cConflictCheckTime* Ct, cConflict cMenuConflictCheck::cMenuConflictCheck() :cOsdMenu("", 4, 12, 4, 5, 30) { -#if VDRVERSNUM >= 10728 - SetMenuCategory(mcSchedule); +#if VDRVERSNUM >= 10734 + SetMenuCategory(mcTimerEdit); #endif showAll = false; lastSel = -1; @@ -197,8 +197,8 @@ 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); +#if VDRVERSNUM >= 10734 + SetMenuCategory(mcTimerEdit); #endif timerObj = TimerObj; checktime = timerObj->conflCheckTime; |