diff options
author | David Robillard <d@drobilla.net> | 2006-12-08 22:32:34 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-12-08 22:32:34 +0000 |
commit | d2d755b0db3b4779d581c7a70841609257250c12 (patch) | |
tree | 826098242c947ac3f5994b1a591a7853275972fc /src/libs/client/ThreadedSigClientInterface.h | |
parent | 26d0171f9bbc4af8036c704d3a4cb69a5d9fe942 (diff) | |
download | ingen-d2d755b0db3b4779d581c7a70841609257250c12.tar.gz ingen-d2d755b0db3b4779d581c7a70841609257250c12.tar.bz2 ingen-d2d755b0db3b4779d581c7a70841609257250c12.zip |
Fixed plugin type issues
git-svn-id: http://svn.drobilla.net/lad/ingen@211 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/ThreadedSigClientInterface.h')
-rw-r--r-- | src/libs/client/ThreadedSigClientInterface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/client/ThreadedSigClientInterface.h b/src/libs/client/ThreadedSigClientInterface.h index 57afd0fa..e286fc95 100644 --- a/src/libs/client/ThreadedSigClientInterface.h +++ b/src/libs/client/ThreadedSigClientInterface.h @@ -85,8 +85,8 @@ public: void error(string msg) { push_sig(sigc::bind(error_slot, msg)); } - void new_plugin(string uri, string name) - { push_sig(sigc::bind(new_plugin_slot, uri, name)); } + void new_plugin(string uri, string type_uri, string name) + { push_sig(sigc::bind(new_plugin_slot, uri, type_uri, name)); } void new_patch(string path, uint32_t poly) { push_sig(sigc::bind(new_patch_slot, path, poly)); } @@ -146,7 +146,7 @@ private: sigc::slot<void, uint32_t> num_plugins_slot; sigc::slot<void, int32_t, bool, string> response_slot; sigc::slot<void, string> error_slot; - sigc::slot<void, string, string> new_plugin_slot; + sigc::slot<void, string, string, string> new_plugin_slot; sigc::slot<void, string, uint32_t> new_patch_slot; sigc::slot<void, string, string, bool, int> new_node_slot; sigc::slot<void, string, string, bool> new_port_slot; |