diff options
author | David Robillard <d@drobilla.net> | 2008-08-16 22:45:35 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-08-16 22:45:35 +0000 |
commit | e9ea28e1efb241619606b937ecd2e97f7e23d897 (patch) | |
tree | 88ead187b63945d61837d075e10be9b105b870cd /src/libs/client/SigClientInterface.hpp | |
parent | 491762bb487e1007f11cdc4dc7c01b03e3bd0d9d (diff) | |
download | ingen-e9ea28e1efb241619606b937ecd2e97f7e23d897.tar.gz ingen-e9ea28e1efb241619606b937ecd2e97f7e23d897.tar.bz2 ingen-e9ea28e1efb241619606b937ecd2e97f7e23d897.zip |
Begin factoring out common elements of EngineInterface and ClientInterface.
git-svn-id: http://svn.drobilla.net/lad/ingen@1406 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/SigClientInterface.hpp')
-rw-r--r-- | src/libs/client/SigClientInterface.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/client/SigClientInterface.hpp b/src/libs/client/SigClientInterface.hpp index 858ea3e6..1fed9e65 100644 --- a/src/libs/client/SigClientInterface.hpp +++ b/src/libs/client/SigClientInterface.hpp @@ -116,7 +116,7 @@ protected: void polyphonic(const string& path, bool polyphonic) { if (_enabled) signal_polyphonic.emit(path, polyphonic); } - void connection(const string& src_port_path, const string& dst_port_path) + void connect(const string& src_port_path, const string& dst_port_path) { if (_enabled) signal_connection.emit(src_port_path, dst_port_path); } void object_destroyed(const string& path) @@ -137,7 +137,7 @@ protected: void object_renamed(const string& old_path, const string& new_path) { if (_enabled) signal_object_renamed.emit(old_path, new_path); } - void disconnection(const string& src_port_path, const string& dst_port_path) + void disconnect(const string& src_port_path, const string& dst_port_path) { if (_enabled) signal_disconnection.emit(src_port_path, dst_port_path); } void variable_change(const string& path, const string& key, const Raul::Atom& value) |