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/gui | |
parent | a6f60beda9e8e6b930423c9adb6652a1cb018443 (diff) | |
download | ingen-6e02a3e2e60ffdcebdb2a244dd11e500e108c6bb.tar.gz ingen-6e02a3e2e60ffdcebdb2a244dd11e500e108c6bb.tar.bz2 ingen-6e02a3e2e60ffdcebdb2a244dd11e500e108c6bb.zip |
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/GraphCanvas.cpp | 4 | ||||
-rw-r--r-- | src/gui/ThreadedLoader.hpp | 2 |
2 files changed, 3 insertions, 3 deletions
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. * |