aboutsummaryrefslogtreecommitdiff
path: root/lib/base/ebase.h
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-06-08 12:38:15 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-06-08 12:38:15 +0000
commit62b8a649fcae500c983215fac2e5202916c0195f (patch)
tree09cda62e0d1be6d3b1db4f3761ac418ad01c50b6 /lib/base/ebase.h
parent94284f21b07f1756120e8b6f5dd53e485a9ff66d (diff)
downloadenigma2-62b8a649fcae500c983215fac2e5202916c0195f.tar.gz
enigma2-62b8a649fcae500c983215fac2e5202916c0195f.zip
merge some code with enigma code
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 d9a17b79..3bdd705c 100644
--- a/lib/base/ebase.h
+++ b/lib/base/ebase.h
@@ -187,7 +187,7 @@ public:
eMainloop():app_quit_now(0),loop_level(0),retval(0){ }
void addSocketNotifier(eSocketNotifier *sn);
void removeSocketNotifier(eSocketNotifier *sn);
- void addTimer(eTimer* e) { TimerList.push_back(e); TimerList.sort(); }
+ void addTimer(eTimer* e) { TimerList.insert_in_order(e); }
void removeTimer(eTimer* e) { TimerList.remove(e); }
int looplevel() { return loop_level; }