gui/epgplus.cpp: use epg id to get events

Origin commit data
------------------
Branch: ni/coolstream
Commit: 3ff71e5e48
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-06-02 (Tue, 02 Jun 2015)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2015-06-02 15:41:24 +03:00
parent bceb57955d
commit f59a3445bc

View File

@@ -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); 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)); //printf("Going to get getEventsServiceKey for %llx\n", (channel->getChannelID() & 0xFFFFFFFFFFFFULL));
CChannelEventList channelEventList; CChannelEventList channelEventList;
CEitManager::getInstance()->getEventsServiceKey(channel->getChannelID(), channelEventList); CEitManager::getInstance()->getEventsServiceKey(channel->getEpgID(), channelEventList);
//printf("channelEventList size %d\n", channelEventList.size()); //printf("channelEventList size %d\n", channelEventList.size());
int xPosEventEntry = this->eventsTableX; int xPosEventEntry = this->eventsTableX;