summaryrefslogtreecommitdiff
path: root/views/displaymenulistview.c
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2015-01-10 10:10:31 +0100
committerlouis <louis.braun@gmx.de>2015-01-10 10:10:31 +0100
commit74febbfe86b63ac894b40f1d6c5fb2de8c6973b5 (patch)
tree93f7ae2924f4d847db955b1593d0df990200a647 /views/displaymenulistview.c
parentabcb357b25051bdbcf65c392ad85a3de0bd22b3c (diff)
downloadvdr-plugin-skindesigner-74febbfe86b63ac894b40f1d6c5fb2de8c6973b5.tar.gz
vdr-plugin-skindesigner-74febbfe86b63ac894b40f1d6c5fb2de8c6973b5.tar.bz2
fixed bug that EPGSearch Favorites Menu was not displayed correctly
Diffstat (limited to 'views/displaymenulistview.c')
-rw-r--r--views/displaymenulistview.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/displaymenulistview.c b/views/displaymenulistview.c
index 6416857..3a51b82 100644
--- a/views/displaymenulistview.c
+++ b/views/displaymenulistview.c
@@ -138,14 +138,14 @@ void cDisplayMenuListView::AddSetupMenuItem(int index, const char *itemText, boo
}
void cDisplayMenuListView::AddSchedulesMenuItem(int index, const cEvent *event, const cChannel *channel, eTimerMatch timerMatch,
- eMenuCategory cat, bool current, bool selectable) {
+ eMenuCategory cat, bool isEpgSearchFav, bool current, bool selectable) {
if (index >= itemCount)
return;
if (menuItems[index]) {
menuItems[index]->SetCurrent(current);
return;
}
- cDisplayMenuItemView *item = new cDisplayMenuItemSchedulesView(tmplList, event, channel, timerMatch, cat, current, selectable);
+ cDisplayMenuItemView *item = new cDisplayMenuItemSchedulesView(tmplList, event, channel, timerMatch, cat, isEpgSearchFav, current, selectable);
menuItems[index] = item;
}