diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-10-29 16:01:13 +0100 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-10-29 16:01:13 +0100 |
commit | d723bdc772b60190af39a256bffc33c27cfb9575 (patch) | |
tree | 9e94623ff857d4a2c5090e6a7d5a9eee7fdaca49 /util.c | |
parent | 8362f9f9780e3804463484d67120fef296fc1dfa (diff) | |
download | vdr-plugin-eepg-d723bdc772b60190af39a256bffc33c27cfb9575.tar.gz vdr-plugin-eepg-d723bdc772b60190af39a256bffc33c27cfb9575.tar.bz2 |
renamed thread so that it is different from EPGFixer plugin
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |