Initialize FbTk::Timer.m_timeout correctly

This commit is contained in:
Mathias Gumz 2013-02-13 10:30:55 +01:00
parent fe2d9476d5
commit 7c26156842

View file

@ -77,7 +77,8 @@ namespace FbTk {
Timer::Timer() :
m_once(false),
m_interval(0),
m_start(0) {
m_start(0),
m_timeout(0) {
}
@ -85,7 +86,8 @@ Timer::Timer(const RefCount<Slot<void> > &handler):
m_handler(handler),
m_once(false),
m_interval(0),
m_start(0) {
m_start(0),
m_timeout(0) {
}