summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-02-12 08:29:15 -0500
committerDavid Robillard <d@drobilla.net>2025-02-12 08:29:15 -0500
commit6e02a3e2e60ffdcebdb2a244dd11e500e108c6bb (patch)
tree97f0c726f80630af3c1e8f0addb421f2d2578a70 /src/gui
parenta6f60beda9e8e6b930423c9adb6652a1cb018443 (diff)
downloadingen-6e02a3e2e60ffdcebdb2a244dd11e500e108c6bb.tar.gz
ingen-6e02a3e2e60ffdcebdb2a244dd11e500e108c6bb.tar.bz2
ingen-6e02a3e2e60ffdcebdb2a244dd11e500e108c6bb.zip
Fix spellingHEADmain
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/GraphCanvas.cpp4
-rw-r--r--src/gui/ThreadedLoader.hpp2
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.
*