From 3bdb3bbc07d5d0b2f80c9cf6b3a9bb04afa58f44 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Tue, 5 Feb 2013 00:58:31 +0100 Subject: [PATCH] - channellist.cpp: fix wrong time for no further events patch by TangoCash. thx! --- src/gui/channellist.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index 075eac562..495ba5c86 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -2114,6 +2114,7 @@ void CChannelList::paint_events(int index) evt.description = g_Locale->getText(LOCALE_EPGLIST_NOEVENTS); evt.eventID = 0; + evt.startTime = time_t(82800); evtlist.push_back(evt); } @@ -2170,6 +2171,7 @@ void CChannelList::readEvents(const t_channel_id channel_id) CChannelEvent evt; evt.description = g_Locale->getText(LOCALE_EPGLIST_NOEVENTS); evt.eventID = 0; + evt.startTime = time_t(82800); evtlist.push_back(evt); } else