diff --git a/source/backend/engine/CarlaEngineOscHandlers.cpp b/source/backend/engine/CarlaEngineOscHandlers.cpp
index fe57ff5ab..696a45079 100644
--- a/source/backend/engine/CarlaEngineOscHandlers.cpp
+++ b/source/backend/engine/CarlaEngineOscHandlers.cpp
@@ -142,7 +142,6 @@ int CarlaEngineOsc::handleMessage(const bool isTCP, const char* const path,
{
plugin = fEngine->getPluginUnchecked(pluginId);
- carla_stderr("%s %s %d\n", plugin->getName(), pluginPath, pluginLen);
if (strlen(plugin->getName()) == pluginLen && !strncmp(plugin->getName(), pluginPath, pluginLen)) {
break;
}
diff --git a/source/frontend/C++/carla_widgets.cpp b/source/frontend/C++/carla_widgets.cpp
index c6e176ad1..97322dee8 100644
--- a/source/frontend/C++/carla_widgets.cpp
+++ b/source/frontend/C++/carla_widgets.cpp
@@ -118,7 +118,8 @@ struct CarlaAboutW::PrivateData {
"");
ui.l_example->setText("/Carla/2/set_parameter_value 5 1.0");
- ui.l_example_help->setText("(as in this example, \"2\" is the plugin number and \"5\" the parameter)");
+ ui.l_example_help->setText("(In this example, \"2\" is the plugin number and \"5\" the parameter.
"
+ "Plugins can also be referenced by their name.)");
ui.l_ladspa->setText(tr("Everything! (Including LRDF)"));
ui.l_dssi->setText(tr("Everything! (Including CustomData/Chunks)"));
diff --git a/source/frontend/dialogs/aboutdialog.cpp b/source/frontend/dialogs/aboutdialog.cpp
index 0174472f6..bc462cff0 100644
--- a/source/frontend/dialogs/aboutdialog.cpp
+++ b/source/frontend/dialogs/aboutdialog.cpp
@@ -72,7 +72,8 @@ AboutDialog::AboutDialog(QWidget* const parent,
"");
ui.l_example->setText("/Carla/2/set_parameter_value 5 1.0");
- ui.l_example_help->setText("(as in this example, \"2\" is the plugin number and \"5\" the parameter)");
+ ui.l_example_help->setText("(In this example, \"2\" is the plugin number and \"5\" the parameter.
"
+ "Plugins can also be referenced by their name.)");
ui.l_ladspa->setText(tr("Everything! (Including LRDF)"));
ui.l_dssi->setText(tr("Everything! (Including CustomData/Chunks)"));