all repos — fluxbox @ 7c26156842418c7aa82cf5c85d573fa049f19a54

custom fork of the fluxbox windowmanager

Initialize FbTk::Timer.m_timeout correctly
Mathias Gumz akira at fluxbox dot org
commit

7c26156842418c7aa82cf5c85d573fa049f19a54

parent

fe2d9476d5025048f45ea7535a8c7412daa50438

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M src/FbTk/Timer.ccsrc/FbTk/Timer.cc

@@ -77,7 +77,8 @@

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) { }