aboutsummaryrefslogtreecommitdiff
path: root/lib/base/ebase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/base/ebase.cpp')
-rw-r--r--lib/base/ebase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base/ebase.cpp b/lib/base/ebase.cpp
index 2ad023b9..7300a571 100644
--- a/lib/base/ebase.cpp
+++ b/lib/base/ebase.cpp
@@ -288,7 +288,7 @@ void eMainloop::quit( int ret ) // call this to leave all loops
void eMainloop::addTimeOffset(int offset)
{
singleLock s(recalcLock);
- for (ePtrList<eTimer>::iterator it(m_timer_list); it != m_timer_list.end(); ++it )
+ for (ePtrList<eTimer>::iterator it = m_timer_list.begin(); it != m_timer_list.end(); ++it )
it->addTimeOffset(offset);
}