summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/QueuedEngineInterface.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-10-01 00:13:02 +0000
committerDavid Robillard <d@drobilla.net>2007-10-01 00:13:02 +0000
commit8ebd59309b153e7337f2e6668b7e2cb4301cc34a (patch)
tree0a6c73fdbf8f67b7cd6e528af39b136224f3abac /src/libs/engine/QueuedEngineInterface.cpp
parent8c633f6d1be4ad24ec6597bed151c0123bd7f11f (diff)
downloadingen-8ebd59309b153e7337f2e6668b7e2cb4301cc34a.tar.gz
ingen-8ebd59309b153e7337f2e6668b7e2cb4301cc34a.tar.bz2
ingen-8ebd59309b153e7337f2e6668b7e2cb4301cc34a.zip
Merge NoteOnEvent and NoteOffEvent.
Consistent naming for object creation events. git-svn-id: http://svn.drobilla.net/lad/ingen@792 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/QueuedEngineInterface.cpp')
-rw-r--r--src/libs/engine/QueuedEngineInterface.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/engine/QueuedEngineInterface.cpp b/src/libs/engine/QueuedEngineInterface.cpp
index 4e138c57..b7d18bde 100644
--- a/src/libs/engine/QueuedEngineInterface.cpp
+++ b/src/libs/engine/QueuedEngineInterface.cpp
@@ -132,7 +132,7 @@ void QueuedEngineInterface::create_port(const string& path,
const string& data_type,
bool direction)
{
- push_queued(new AddPortEvent(_engine, _responder, now(), path, data_type, direction, this));
+ push_queued(new CreatePortEvent(_engine, _responder, now(), path, data_type, direction, this));
}
@@ -141,7 +141,7 @@ QueuedEngineInterface::create_node(const string& path,
const string& plugin_uri,
bool polyphonic)
{
- push_queued(new AddNodeEvent(_engine, _responder, now(),
+ push_queued(new CreateNodeEvent(_engine, _responder, now(),
path, plugin_uri, polyphonic));
}
@@ -153,7 +153,7 @@ QueuedEngineInterface::create_node(const string& path,
const string& plugin_label,
bool polyphonic)
{
- push_queued(new AddNodeEvent(_engine, _responder, now(),
+ push_queued(new CreateNodeEvent(_engine, _responder, now(),
path, plugin_type, plugin_lib, plugin_label, polyphonic));
}