diff --git a/src/FbTk/Timer.cc b/src/FbTk/Timer.cc index 387c5d29..7f7977e9 100644 --- a/src/FbTk/Timer.cc +++ b/src/FbTk/Timer.cc @@ -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 > &handler): m_handler(handler), m_once(false), m_interval(0), - m_start(0) { + m_start(0), + m_timeout(0) { }