summaryrefslogtreecommitdiffstats
path: root/src/engine/QueuedEngineInterface.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-12 21:58:35 +0000
committerDavid Robillard <d@drobilla.net>2009-05-12 21:58:35 +0000
commited1032ca54a55c48d2f7c9709b77a4f4da935e99 (patch)
treeebc821e22bcdd9424383174fe9ec2a6a32dbb362 /src/engine/QueuedEngineInterface.cpp
parentc32745b044d88e74526599c5994255a2ea6d2c21 (diff)
downloadingen-ed1032ca54a55c48d2f7c9709b77a4f4da935e99.tar.gz
ingen-ed1032ca54a55c48d2f7c9709b77a4f4da935e99.tar.bz2
ingen-ed1032ca54a55c48d2f7c9709b77a4f4da935e99.zip
Bring EngineInterface and ClientInterface closer together.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1990 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/QueuedEngineInterface.cpp')
-rw-r--r--src/engine/QueuedEngineInterface.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/QueuedEngineInterface.cpp b/src/engine/QueuedEngineInterface.cpp
index 9a2cea1b..00d142c9 100644
--- a/src/engine/QueuedEngineInterface.cpp
+++ b/src/engine/QueuedEngineInterface.cpp
@@ -191,9 +191,9 @@ QueuedEngineInterface::new_node_deprecated(const string& path,
void
QueuedEngineInterface::rename(const string& old_path,
- const string& new_symbol)
+ const string& new_path)
{
- push_queued(new RenameEvent(_engine, _responder, now(), old_path, new_symbol));
+ push_queued(new RenameEvent(_engine, _responder, now(), old_path, new_path));
}
@@ -230,9 +230,9 @@ QueuedEngineInterface::disconnect(const string& src_port_path,
void
QueuedEngineInterface::disconnect_all(const string& patch_path,
- const string& node_path)
+ const string& path)
{
- push_queued(new DisconnectAllEvent(_engine, _responder, now(), patch_path, node_path));
+ push_queued(new DisconnectAllEvent(_engine, _responder, now(), patch_path, path));
}