summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitar Petrovski <dimeptr@gmail.com>2012-10-29 16:02:20 +0100
committerDimitar Petrovski <dimeptr@gmail.com>2012-10-29 16:02:20 +0100
commitc38e894109fb25110a6cc0123deb5eafb7bba52f (patch)
tree03435e64083b161c539fad9fff02e5b49b7fe100
parent9f123334782232413a36836d0894949bc7928cc9 (diff)
parentd723bdc772b60190af39a256bffc33c27cfb9575 (diff)
downloadvdr-plugin-eepg-c38e894109fb25110a6cc0123deb5eafb7bba52f.tar.gz
vdr-plugin-eepg-c38e894109fb25110a6cc0123deb5eafb7bba52f.tar.bz2
Merge branch 'map-event-ceit2' into epg_short_text
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index 88de2b6..415f213 100644
--- a/util.c
+++ b/util.c
@@ -167,7 +167,7 @@ public:
};
cAddEventThread::cAddEventThread(void)
-:cThread("cAddEventThread"), LastHandleEvent()
+:cThread("cAddEEPGEventThread"), LastHandleEvent()
{
map_list = new std::map<tChannelID,cList<cEvent>*,tChannelIDCompare>;
}
@@ -178,7 +178,7 @@ cAddEventThread::~cAddEventThread(void)
Cancel(3);
std::map<tChannelID,cList<cEvent>*,tChannelIDCompare>::iterator it;
for ( it=map_list->begin() ; it != map_list->end(); it++ )
- (*it).second->cList::Clear();
+ (*it).second->Clear();
}
void cAddEventThread::Action(void)