summaryrefslogtreecommitdiff
path: root/menu_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'menu_main.c')
-rw-r--r--menu_main.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/menu_main.c b/menu_main.c
index 8dc1c56..8567dc7 100644
--- a/menu_main.c
+++ b/menu_main.c
@@ -143,12 +143,7 @@ void cMenuSearchMain::PrepareSchedule(cChannel *Channel)
struct tm *t_event = localtime_r(&EventDate, &tm_rEvent);
struct tm *t_lastevent = localtime_r(&lastEventDate, &tm_rLastEvent);
if (t_event->tm_mday != t_lastevent->tm_mday)
- {
- cString szSep = cString::sprintf("%s\t %s %s", MENU_SEPARATOR_ITEMS, GETDATESTRING(Event), MENU_SEPARATOR_ITEMS);
- cOsdItem* pSepItem = new cOsdItem(szSep);
- pSepItem->SetSelectable(false);
- Add(pSepItem);
- }
+ Add(new cMenuMyScheduleSepItem(Event));
lastEventDate = EventDate;
}
Add(new cMenuMyScheduleItem(Event, NULL, showNow, ScheduleTemplate), Event == PresentEvent);