Add missing include, due to André LASSERT change

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24236 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
José Matox 2008-04-11 12:12:57 +00:00
parent 5dfa0c0381
commit 456e922dc1

View File

@ -10,6 +10,7 @@
#include <config.h>
#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: