@@ -353,7 +353,7 @@ int CarlaEngineOsc::handleMsgRegister(const int argc, const lo_arg* const* const | |||||
CarlaPlugin* const plugin = engine->getPluginUnchecked(i); | CarlaPlugin* const plugin = engine->getPluginUnchecked(i); | ||||
if (plugin && plugin->enabled()) | if (plugin && plugin->enabled()) | ||||
plugin->registerToOscControl(); | |||||
plugin->registerToOscClient(); | |||||
} | } | ||||
return 0; | return 0; | ||||
@@ -1015,7 +1015,7 @@ CarlaPlugin* CarlaPlugin::newBridge(const initializer& init, BinaryType btype, P | |||||
} | } | ||||
//plugin->reload(); | //plugin->reload(); | ||||
plugin->registerToOscControl(); | |||||
plugin->registerToOscClient(); | |||||
return plugin; | return plugin; | ||||
} | } | ||||
@@ -1267,7 +1267,7 @@ void CarlaPlugin::postEventsRun() | |||||
#ifndef BUILD_BRIDGE | #ifndef BUILD_BRIDGE | ||||
// Update OSC control client | // Update OSC control client | ||||
if (x_engine->isOscControlRegisted()) | |||||
if (x_engine->isOscControlRegistered()) | |||||
x_engine->osc_send_control_set_parameter_value(m_id, event->value1, event->value3); | x_engine->osc_send_control_set_parameter_value(m_id, event->value1, event->value3); | ||||
#endif | #endif | ||||
@@ -1282,7 +1282,7 @@ void CarlaPlugin::postEventsRun() | |||||
#ifndef BUILD_BRIDGE | #ifndef BUILD_BRIDGE | ||||
// Update OSC control client | // Update OSC control client | ||||
if (x_engine->isOscControlRegisted()) | |||||
if (x_engine->isOscControlRegistered()) | |||||
{ | { | ||||
x_engine->osc_send_control_set_program(m_id, event->value1); | x_engine->osc_send_control_set_program(m_id, event->value1); | ||||
@@ -1302,7 +1302,7 @@ void CarlaPlugin::postEventsRun() | |||||
#ifndef BUILD_BRIDGE | #ifndef BUILD_BRIDGE | ||||
// Update OSC control client | // Update OSC control client | ||||
if (x_engine->isOscControlRegisted()) | |||||
if (x_engine->isOscControlRegistered()) | |||||
{ | { | ||||
x_engine->osc_send_control_set_midi_program(m_id, event->value1); | x_engine->osc_send_control_set_midi_program(m_id, event->value1); | ||||
@@ -1321,7 +1321,7 @@ void CarlaPlugin::postEventsRun() | |||||
#ifndef BUILD_BRIDGE | #ifndef BUILD_BRIDGE | ||||
// Update OSC control client | // Update OSC control client | ||||
if (x_engine->isOscControlRegisted()) | |||||
if (x_engine->isOscControlRegistered()) | |||||
x_engine->osc_send_control_note_on(m_id, event->value1, event->value2, rint(event->value3)); | x_engine->osc_send_control_note_on(m_id, event->value1, event->value2, rint(event->value3)); | ||||
#endif | #endif | ||||
@@ -1335,7 +1335,7 @@ void CarlaPlugin::postEventsRun() | |||||
#ifndef BUILD_BRIDGE | #ifndef BUILD_BRIDGE | ||||
// Update OSC control client | // Update OSC control client | ||||
if (x_engine->isOscControlRegisted()) | |||||
if (x_engine->isOscControlRegistered()) | |||||
x_engine->osc_send_control_note_off(m_id, event->value1, event->value2); | x_engine->osc_send_control_note_off(m_id, event->value1, event->value2); | ||||
#endif | #endif | ||||
@@ -811,7 +811,7 @@ public: | |||||
#ifndef BUILD_BRIDGE | #ifndef BUILD_BRIDGE | ||||
// Update OSC Names | // Update OSC Names | ||||
if (x_engine->isOscControlRegisted()) | |||||
if (x_engine->isOscControlRegistered()) | |||||
{ | { | ||||
x_engine->osc_send_control_set_midi_program_count(m_id, midiprog.count); | x_engine->osc_send_control_set_midi_program_count(m_id, midiprog.count); | ||||
@@ -802,7 +802,7 @@ public: | |||||
//f_sfont->free(f_sfont); | //f_sfont->free(f_sfont); | ||||
// Update OSC Names | // Update OSC Names | ||||
if (x_engine->isOscControlRegisted()) | |||||
if (x_engine->isOscControlRegistered()) | |||||
{ | { | ||||
x_engine->osc_send_control_set_midi_program_count(m_id, midiprog.count); | x_engine->osc_send_control_set_midi_program_count(m_id, midiprog.count); | ||||
@@ -1355,7 +1355,7 @@ CarlaPlugin* CarlaPlugin::newSF2(const initializer& init) | |||||
} | } | ||||
plugin->reload(); | plugin->reload(); | ||||
plugin->registerToOscControl(); | |||||
plugin->registerToOscClient(); | |||||
return plugin; | return plugin; | ||||
#else | #else | ||||
@@ -415,7 +415,7 @@ public: | |||||
} | } | ||||
// Update OSC Names | // Update OSC Names | ||||
if (x_engine->isOscControlRegisted()) | |||||
if (x_engine->isOscControlRegistered()) | |||||
{ | { | ||||
x_engine->osc_send_control_set_midi_program_count(m_id, midiprog.count); | x_engine->osc_send_control_set_midi_program_count(m_id, midiprog.count); | ||||
@@ -951,7 +951,7 @@ CarlaPlugin* LinuxSamplerPlugin::newLinuxSampler(const initializer& init, bool i | |||||
} | } | ||||
plugin->reload(); | plugin->reload(); | ||||
plugin->registerToOscControl(); | |||||
plugin->registerToOscClient(); | |||||
return plugin; | return plugin; | ||||
} | } | ||||
@@ -1869,7 +1869,7 @@ public: | |||||
#ifndef BUILD_BRIDGE | #ifndef BUILD_BRIDGE | ||||
// Update OSC Names | // Update OSC Names | ||||
if (x_engine->isOscControlRegisted()) | |||||
if (x_engine->isOscControlRegistered()) | |||||
{ | { | ||||
x_engine->osc_send_control_set_midi_program_count(m_id, midiprog.count); | x_engine->osc_send_control_set_midi_program_count(m_id, midiprog.count); | ||||
@@ -758,7 +758,7 @@ public: | |||||
} | } | ||||
// Update OSC Names | // Update OSC Names | ||||
if (x_engine->isOscControlRegisted()) | |||||
if (x_engine->isOscControlRegistered()) | |||||
{ | { | ||||
x_engine->osc_send_control_set_midi_program_count(m_id, midiprog.count); | x_engine->osc_send_control_set_midi_program_count(m_id, midiprog.count); | ||||
@@ -1675,7 +1675,7 @@ CarlaPlugin* CarlaPlugin::newNative(const initializer& init) | |||||
} | } | ||||
} | } | ||||
plugin->registerToOscControl(); | |||||
plugin->registerToOscClient(); | |||||
return plugin; | return plugin; | ||||
} | } | ||||
@@ -836,7 +836,7 @@ public: | |||||
#ifndef BUILD_BRIDGE | #ifndef BUILD_BRIDGE | ||||
// Update OSC Names | // Update OSC Names | ||||
if (x_engine->isOscControlRegisted()) | |||||
if (x_engine->isOscControlRegistered()) | |||||
{ | { | ||||
x_engine->osc_send_control_set_program_count(m_id, prog.count); | x_engine->osc_send_control_set_program_count(m_id, prog.count); | ||||