From d72ed9fd506756c83d97b62f6640135f3b8c32bb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 16 Aug 2008 22:59:01 +0000 Subject: Closer... git-svn-id: http://svn.drobilla.net/lad/ingen@1407 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/OSCClientSender.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/libs/engine/OSCClientSender.cpp') diff --git a/src/libs/engine/OSCClientSender.cpp b/src/libs/engine/OSCClientSender.cpp index 2139a49a..2c7b5825 100644 --- a/src/libs/engine/OSCClientSender.cpp +++ b/src/libs/engine/OSCClientSender.cpp @@ -445,19 +445,19 @@ OSCClientSender::disconnect(const std::string& src_port_path, const std::string& /** \page client_osc_namespace - *

\b /ingen/variable_change - Notification of a piece of variable. + *

\b /ingen/set_variable - Notification of a piece of variable. * \arg \b path (string) - Path of the object associated with variable (can be a node, patch, or port) * \arg \b key (string) * \arg \b value (string)

\n \n */ void -OSCClientSender::variable_change(const std::string& path, const std::string& key, const Atom& value) +OSCClientSender::set_variable(const std::string& path, const std::string& key, const Atom& value) { lo_message m = lo_message_new(); lo_message_add_string(m, path.c_str()); lo_message_add_string(m, key.c_str()); Raul::AtomLiblo::lo_message_add_atom(m, value); - send_message("/ingen/variable_change", m); + send_message("/ingen/set_variable", m); } @@ -542,7 +542,7 @@ OSCClientSender::new_patch(const std::string& path, uint32_t poly) // Send variables const map& data = p->variable(); for (map::const_iterator i = data.begin(); i != data.end(); ++i) { - variable_change(p->path(), (*i).first, (*i).second); + set_variable(p->path(), (*i).first, (*i).second); } */ } -- cgit v1.2.1