aboutsummaryrefslogtreecommitdiff
path: root/lib/base/ebase.h
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-12-12 19:36:32 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-12-12 19:36:32 +0000
commit93236223dac3af2ee2b4b40b07d4128bff8ea653 (patch)
treeffed72050100b7e977ec6adb4db1798ed9d365d1 /lib/base/ebase.h
parent86b04511f9dc9f11465b68159f5547a124d1c4d0 (diff)
downloadenigma2-93236223dac3af2ee2b4b40b07d4128bff8ea653.tar.gz
enigma2-93236223dac3af2ee2b4b40b07d4128bff8ea653.zip
fix bug in mainloop (this fixes sometimes no more responding e2)
Diffstat (limited to 'lib/base/ebase.h')
-rw-r--r--lib/base/ebase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base/ebase.h b/lib/base/ebase.h
index a399667e..db936794 100644
--- a/lib/base/ebase.h
+++ b/lib/base/ebase.h
@@ -175,7 +175,7 @@ class eMainloop
{
friend class eTimer;
friend class eSocketNotifier;
- std::map<int, eSocketNotifier*> notifiers;
+ std::map<int, eSocketNotifier*> notifiers, new_notifiers;
ePtrList<eTimer> m_timer_list;
bool app_quit_now;
int loop_level;