mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
5dfa0c0381
commit
456e922dc1
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user