From ae5a6638225445c9c98b285885a23bb9fdc0b265 Mon Sep 17 00:00:00 2001 From: jamatos Date: Fri, 11 Apr 2008 12:12:57 +0000 Subject: [PATCH] =?utf8?q?Add=20missing=20include,=20due=20to=20Andr=C3=A9?= =?utf8?q?=20LASSERT=20change?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24236 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/support/Timeout.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/support/Timeout.cpp b/src/support/Timeout.cpp index 0c5c279b8e..5f75509aa1 100644 --- a/src/support/Timeout.cpp +++ b/src/support/Timeout.cpp @@ -10,6 +10,7 @@ #include +#include "support/assert.h" #include "support/Timeout.h" #include "support/debug.h" @@ -29,7 +30,7 @@ public: /// Impl(Timeout & owner) : owner_(owner), timeout_id(-1) {} /// - bool running() const { return timeout_id != -1; } + bool running() const { return timeout_id != -1; } /// start the timer void start(); /// stop the timer @@ -40,7 +41,7 @@ public: unsigned int timeout_ms() const { return owner_.timeout_ms; } protected: - /// + /// void timerEvent(QTimerEvent *) { owner_.emit(); } private: -- 2.11.4.GIT