diff options
author | David Robillard <d@drobilla.net> | 2008-11-27 01:13:53 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-11-27 01:13:53 +0000 |
commit | 9b9a6c9e3eb8da7eb1decd963a6c2f0e69b57ed4 (patch) | |
tree | 493656f51b1a68ac10430f5aa8100b4736880950 /src/engine/events | |
parent | 46611da7c351532d99db29e84ad288c1ae26dfa4 (diff) | |
download | ingen-9b9a6c9e3eb8da7eb1decd963a6c2f0e69b57ed4.tar.gz ingen-9b9a6c9e3eb8da7eb1decd963a6c2f0e69b57ed4.tar.bz2 ingen-9b9a6c9e3eb8da7eb1decd963a6c2f0e69b57ed4.zip |
Fix 'control change for unknown port' message on patch loading.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1783 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/events')
-rw-r--r-- | src/engine/events/CreateNodeEvent.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/engine/events/CreateNodeEvent.cpp b/src/engine/events/CreateNodeEvent.cpp index 29f7f96e..d88afb89 100644 --- a/src/engine/events/CreateNodeEvent.cpp +++ b/src/engine/events/CreateNodeEvent.cpp @@ -38,14 +38,14 @@ namespace Ingen { CreateNodeEvent::CreateNodeEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, const string& path, const string& plugin_uri, bool polyphonic) -: QueuedEvent(engine, responder, timestamp), - _path(path), - _plugin_uri(plugin_uri), - _polyphonic(polyphonic), - _patch(NULL), - _node(NULL), - _compiled_patch(NULL), - _node_already_exists(false) + : QueuedEvent(engine, responder, timestamp) + , _path(path) + , _plugin_uri(plugin_uri) + , _polyphonic(polyphonic) + , _patch(NULL) + , _node(NULL) + , _compiled_patch(NULL) + , _node_already_exists(false) { } |