diff options
author | David Robillard <d@drobilla.net> | 2025-02-12 08:29:15 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-02-12 08:29:15 -0500 |
commit | 6e02a3e2e60ffdcebdb2a244dd11e500e108c6bb (patch) | |
tree | 97f0c726f80630af3c1e8f0addb421f2d2578a70 /src | |
parent | a6f60beda9e8e6b930423c9adb6652a1cb018443 (diff) | |
download | ingen-6e02a3e2e60ffdcebdb2a244dd11e500e108c6bb.tar.gz ingen-6e02a3e2e60ffdcebdb2a244dd11e500e108c6bb.tar.bz2 ingen-6e02a3e2e60ffdcebdb2a244dd11e500e108c6bb.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/ClashAvoider.cpp | 2 | ||||
-rw-r--r-- | src/client/BlockModel.cpp | 2 | ||||
-rw-r--r-- | src/gui/GraphCanvas.cpp | 4 | ||||
-rw-r--r-- | src/gui/ThreadedLoader.hpp | 2 | ||||
-rw-r--r-- | src/server/InputPort.hpp | 2 | ||||
-rw-r--r-- | src/server/LV2Block.cpp | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/src/ClashAvoider.cpp b/src/ClashAvoider.cpp index 098c9b6d..ed4dc91a 100644 --- a/src/ClashAvoider.cpp +++ b/src/ClashAvoider.cpp @@ -158,7 +158,7 @@ ClashAvoider::adjust_name(const raul::Path& old_path, { const auto name_suffix_start = numeric_suffix_start(name); if (!name_suffix_start) { - return name; // No numeric suffix, just re-use old label + return name; // No numeric suffix, just reuse old label } const auto name_suffix = atoi(name.c_str() + *name_suffix_start); diff --git a/src/client/BlockModel.cpp b/src/client/BlockModel.cpp index c5dbd3b7..beef0117 100644 --- a/src/client/BlockModel.cpp +++ b/src/client/BlockModel.cpp @@ -226,7 +226,7 @@ BlockModel::port_value_range(const std::shared_ptr<const PortModel>& port, default_port_value_range(port, min, max); - // Possibly overriden + // Possibly overridden const Atom& min_atom = port->get_property(_uris.lv2_minimum); const Atom& max_atom = port->get_property(_uris.lv2_maximum); if (min_atom.type() == _uris.forge.Float) { diff --git a/src/gui/GraphCanvas.cpp b/src/gui/GraphCanvas.cpp index 22edbf15..3090186a 100644 --- a/src/gui/GraphCanvas.cpp +++ b/src/gui/GraphCanvas.cpp @@ -253,7 +253,7 @@ GraphCanvas::build_menus() _menu->reorder_child(*internal_menu_item, 4); } - // Build skeleton LV2 plugin class heirarchy for 'Plugin' menu + // Build skeleton LV2 plugin class hierarchy for 'Plugin' menu if (_plugin_menu) { _plugin_menu->clear(); } else { @@ -269,7 +269,7 @@ GraphCanvas::build_menus() sigc::mem_fun(this, &GraphCanvas::load_plugin)); } - // Add known plugins to menu heirarchy + // Add known plugins to menu hierarchy auto plugins = _app.store()->plugins(); for (const auto& p : *plugins) { add_plugin(p.second); diff --git a/src/gui/ThreadedLoader.hpp b/src/gui/ThreadedLoader.hpp index 148124fc..27ba7c8c 100644 --- a/src/gui/ThreadedLoader.hpp +++ b/src/gui/ThreadedLoader.hpp @@ -50,7 +50,7 @@ class App; /** Thread for loading graph files. * - * This is a seperate thread so it can send all the loading message without + * This is a separate thread so it can send all the loading message without * blocking everything else, so the app can respond to the incoming events * caused as a result of the graph loading, while the graph loads. * diff --git a/src/server/InputPort.hpp b/src/server/InputPort.hpp index 00834dc1..f3c6e553 100644 --- a/src/server/InputPort.hpp +++ b/src/server/InputPort.hpp @@ -96,7 +96,7 @@ public: /** Like `get_buffers`, but for the pre-process thread. * - * This uses the "current" number of arcs fromthe perspective of the + * This uses the "current" number of arcs from the perspective of the * pre-process thread to allocate buffers for application of a * connection/disconnection/etc in the next process cycle. */ diff --git a/src/server/LV2Block.cpp b/src/server/LV2Block.cpp index ea6a6955..ad7b28ae 100644 --- a/src/server/LV2Block.cpp +++ b/src/server/LV2Block.cpp @@ -226,7 +226,7 @@ LV2Block::apply_poly(RunContext& ctx, uint32_t poly) /** Instantiate self from LV2 plugin descriptor. * - * Implemented as a seperate function (rather than in the constructor) to + * Implemented as a separate function (rather than in the constructor) to * allow graceful error-catching of broken plugins. * * Returns whether or not plugin was successfully instantiated. If return |