From 24d998447070dbfef3eaf7762dce7e97c3903801 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 16 Nov 2008 02:49:22 +0000 Subject: TCP notification stream support (not fully implemented yet, but transport stuff is working). Support multiple event sources in the engine. Clean up HTTP/TCP stuff. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1721 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/ClientStore.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/client/ClientStore.cpp') diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp index fbcf5929..cf9e06a0 100644 --- a/src/client/ClientStore.cpp +++ b/src/client/ClientStore.cpp @@ -55,7 +55,7 @@ ClientStore::ClientStore(SharedPtr engine, SharedPtrsignal_property_change.connect(sigc::mem_fun(this, &ClientStore::set_property)); emitter->signal_port_value.connect(sigc::mem_fun(this, &ClientStore::set_port_value)); emitter->signal_voice_value.connect(sigc::mem_fun(this, &ClientStore::set_voice_value)); - emitter->signal_port_activity.connect(sigc::mem_fun(this, &ClientStore::port_activity)); + emitter->signal_activity.connect(sigc::mem_fun(this, &ClientStore::activity)); } @@ -557,13 +557,13 @@ ClientStore::set_voice_value(const string& port_path, uint32_t voice, const Raul void -ClientStore::port_activity(const Path& port_path) +ClientStore::activity(const Path& path) { - SharedPtr port = PtrCast(object(port_path)); + SharedPtr port = PtrCast(object(path)); if (port) port->signal_activity.emit(); else - cerr << "ERROR: activity for nonexistant port " << port_path << endl; + cerr << "ERROR: activity for nonexistant port " << path << endl; } -- cgit v1.2.1