diff options
author | David Robillard <d@drobilla.net> | 2022-08-18 02:04:21 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-08-18 02:04:21 -0400 |
commit | 9994cdebb60ecffcf81ced46ccfd12968ea3b2da (patch) | |
tree | eddf1322d05e407fa3b683fca25a6a150427ddba /src/client | |
parent | c8152e8724c8e78fc53651f000a4e63aca945722 (diff) | |
download | ingen-9994cdebb60ecffcf81ced46ccfd12968ea3b2da.tar.gz ingen-9994cdebb60ecffcf81ced46ccfd12968ea3b2da.tar.bz2 ingen-9994cdebb60ecffcf81ced46ccfd12968ea3b2da.zip |
Use consistent spacing for line comments
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/GraphModel.cpp | 2 | ||||
-rw-r--r-- | src/client/PluginModel.cpp | 2 | ||||
-rw-r--r-- | src/client/PluginUI.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/client/GraphModel.cpp b/src/client/GraphModel.cpp index 7829a241..2fed1fb3 100644 --- a/src/client/GraphModel.cpp +++ b/src/client/GraphModel.cpp @@ -85,7 +85,7 @@ GraphModel::remove_arcs_on(const std::shared_ptr<PortModel>& p) || arc->head_path().parent() == p->path() || arc->head_path() == p->path()) { _signal_removed_arc.emit(arc); - _arcs.erase(j); // Cuts our reference + _arcs.erase(j); // Cuts our reference } j = next; } diff --git a/src/client/PluginModel.cpp b/src/client/PluginModel.cpp index 2b598e2c..306846ee 100644 --- a/src/client/PluginModel.cpp +++ b/src/client/PluginModel.cpp @@ -49,7 +49,7 @@ PluginModel::PluginModel(URIs& uris, if (uri.string().find("ingen-internals") != string::npos) { _type = uris.ingen_Internal.urid_atom(); } else { - _type = uris.lv2_Plugin.urid_atom(); // Assume LV2 and hope for the best... + _type = uris.lv2_Plugin.urid_atom(); // Assume LV2 and hope for the best... } } diff --git a/src/client/PluginUI.cpp b/src/client/PluginUI.cpp index a0a966a3..031caceb 100644 --- a/src/client/PluginUI.cpp +++ b/src/client/PluginUI.cpp @@ -78,7 +78,7 @@ lv2_ui_write(SuilController controller, const float value = *static_cast<const float*>(buffer); if (port->value().type() == uris.atom_Float && value == port->value().get<float>()) { - return; // Ignore feedback + return; // Ignore feedback } ui->signal_property_changed()( |