summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorDimitar Petrovski <dimeptr@gmail.com>2012-10-29 16:01:13 +0100
committerDimitar Petrovski <dimeptr@gmail.com>2012-10-29 16:01:13 +0100
commitd723bdc772b60190af39a256bffc33c27cfb9575 (patch)
tree9e94623ff857d4a2c5090e6a7d5a9eee7fdaca49 /util.c
parent8362f9f9780e3804463484d67120fef296fc1dfa (diff)
downloadvdr-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.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)