summaryrefslogtreecommitdiffstats
path: root/src/engine/OSCClientSender.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-11 21:51:47 +0000
committerDavid Robillard <d@drobilla.net>2009-05-11 21:51:47 +0000
commitfaf4db950721d5425bc8078d0fa6606e7064e69a (patch)
treecdd72f4910b5a59ea6097fadda768f31d7e6cf8c /src/engine/OSCClientSender.cpp
parentcb5287d0379287c461a0ac5b950161244a7fa53b (diff)
downloadingen-faf4db950721d5425bc8078d0fa6606e7064e69a.tar.gz
ingen-faf4db950721d5425bc8078d0fa6606e7064e69a.tar.bz2
ingen-faf4db950721d5425bc8078d0fa6606e7064e69a.zip
Don't cause slv2 to load plugin data until a plugin is loaded or menu requested (faster startup).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1977 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/OSCClientSender.cpp')
-rw-r--r--src/engine/OSCClientSender.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/engine/OSCClientSender.cpp b/src/engine/OSCClientSender.cpp
index db1d342e..2e058ed5 100644
--- a/src/engine/OSCClientSender.cpp
+++ b/src/engine/OSCClientSender.cpp
@@ -298,14 +298,12 @@ OSCClientSender::activity(const std::string& path)
void
OSCClientSender::new_plugin(const std::string& uri,
const std::string& type_uri,
- const std::string& symbol,
- const std::string& name)
+ const std::string& symbol)
{
lo_message m = lo_message_new();
lo_message_add_string(m, uri.c_str());
lo_message_add_string(m, type_uri.c_str());
lo_message_add_string(m, symbol.c_str());
- lo_message_add_string(m, name.c_str());
send_message("/ingen/plugin", m);
}