diff options
author | David Robillard <d@drobilla.net> | 2006-09-10 20:11:40 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-09-10 20:11:40 +0000 |
commit | e772196c07ff58022beaabf5e494be3441d1ba4a (patch) | |
tree | 4a3dc214fb333d9787c666e1b3d239124b94302e /src/libs/engine/QueuedEvent.h | |
parent | 8854610aac91caaf6bb8db782cc4c9bd2ca53c52 (diff) | |
download | ingen-e772196c07ff58022beaabf5e494be3441d1ba4a.tar.gz ingen-e772196c07ff58022beaabf5e494be3441d1ba4a.tar.bz2 ingen-e772196c07ff58022beaabf5e494be3441d1ba4a.zip |
Zoom Full feature in FlowCanvas/Ingenuity.
Fix for reattaching to running engine (reponse ID bug).
More GUI work.
git-svn-id: http://svn.drobilla.net/lad/ingen@126 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/QueuedEvent.h')
-rw-r--r-- | src/libs/engine/QueuedEvent.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libs/engine/QueuedEvent.h b/src/libs/engine/QueuedEvent.h index 388630e7..733ebd38 100644 --- a/src/libs/engine/QueuedEvent.h +++ b/src/libs/engine/QueuedEvent.h @@ -80,7 +80,10 @@ protected: QueuedEventSource* source = NULL) : Event(engine, responder, time) , _pre_processed(false), _blocking(blocking), _source(source) - {} + { + if (blocking) + assert(_source); + } // NULL event base (for internal events only!) QueuedEvent(Engine& engine) |