aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Timer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/Timer.cc')
-rw-r--r--src/FbTk/Timer.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/FbTk/Timer.cc b/src/FbTk/Timer.cc
index 387c5d2..7f7977e 100644
--- a/src/FbTk/Timer.cc
+++ b/src/FbTk/Timer.cc
@@ -77,7 +77,8 @@ namespace FbTk {
77Timer::Timer() : 77Timer::Timer() :
78 m_once(false), 78 m_once(false),
79 m_interval(0), 79 m_interval(0),
80 m_start(0) { 80 m_start(0),
81 m_timeout(0) {
81 82
82} 83}
83 84
@@ -85,7 +86,8 @@ Timer::Timer(const RefCount<Slot<void> > &handler):
85 m_handler(handler), 86 m_handler(handler),
86 m_once(false), 87 m_once(false),
87 m_interval(0), 88 m_interval(0),
88 m_start(0) { 89 m_start(0),
90 m_timeout(0) {
89} 91}
90 92
91 93