summaryrefslogtreecommitdiffstats
path: root/src/engine/QueuedEvent.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/QueuedEvent.hpp')
-rw-r--r--src/engine/QueuedEvent.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/QueuedEvent.hpp b/src/engine/QueuedEvent.hpp
index 6bc6a898..71c29624 100644
--- a/src/engine/QueuedEvent.hpp
+++ b/src/engine/QueuedEvent.hpp
@@ -60,9 +60,9 @@ protected:
bool blocking = false,
QueuedEventSource* source = NULL)
: Event(engine, responder, time)
+ , _source(source)
, _pre_processed(false)
, _blocking(blocking)
- , _source(source)
{
if (blocking)
assert(_source);
@@ -71,14 +71,14 @@ protected:
// NULL event base (for internal events only!)
QueuedEvent(Engine& engine)
: Event(engine, SharedPtr<Responder>(), 0)
+ , _source(NULL)
, _pre_processed(false)
, _blocking(false)
- , _source(NULL)
{}
+ QueuedEventSource* _source;
bool _pre_processed;
bool _blocking;
- QueuedEventSource* _source;
};