From 3ff71e5e48b00adba1251748f7d0bcb56a740ffe Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Tue, 2 Jun 2015 15:41:24 +0300 Subject: [PATCH] gui/epgplus.cpp: use epg id to get events --- src/gui/epgplus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/epgplus.cpp b/src/gui/epgplus.cpp index 2594e744e..a7f37d69f 100644 --- a/src/gui/epgplus.cpp +++ b/src/gui/epgplus.cpp @@ -553,7 +553,7 @@ void EpgPlus::createChannelEntries (int selectedChannelEntryIndex) ChannelEntry *channelEntry = new ChannelEntry (channel, i, this->frameBuffer, this->footer, this->bouquetList, this->channelsTableX + 2, yPosChannelEntry, this->channelsTableWidth); //printf("Going to get getEventsServiceKey for %llx\n", (channel->getChannelID() & 0xFFFFFFFFFFFFULL)); CChannelEventList channelEventList; - CEitManager::getInstance()->getEventsServiceKey(channel->getChannelID(), channelEventList); + CEitManager::getInstance()->getEventsServiceKey(channel->getEpgID(), channelEventList); //printf("channelEventList size %d\n", channelEventList.size()); int xPosEventEntry = this->eventsTableX;