summaryrefslogtreecommitdiff
path: root/gtk2_ardour/plugin_selector.cc
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2014-05-10 08:41:49 +0100
committerJohn Emmas <johne53@tiscali.co.uk>2014-05-10 08:41:49 +0100
commit592a21db5fcf458cd078b1ebd1d36e874ab6318a (patch)
tree8b31e237e31ab583cf2e526c4ed09e3cfb8fd949 /gtk2_ardour/plugin_selector.cc
parentf075981330f256cbafeed15cbe838313474b7537 (diff)
Oops - minor spelling corrections
Diffstat (limited to 'gtk2_ardour/plugin_selector.cc')
-rw-r--r--gtk2_ardour/plugin_selector.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/plugin_selector.cc b/gtk2_ardour/plugin_selector.cc
index 0c46a622b3..fcf056307e 100644
--- a/gtk2_ardour/plugin_selector.cc
+++ b/gtk2_ardour/plugin_selector.cc
@@ -317,7 +317,7 @@ PluginSelector::refiller (const PluginInfoList& plugs, const::std::string& filte
while (pos < creator.length() && (isalnum (creator[pos]) || isspace (creator[pos]))) ++pos;
#endif
// If there were too few characters to create a
- // meaningfule name, mark this creator as 'Unknown'
+ // meaningful name, mark this creator as 'Unknown'
if (creator.length()<2 || pos<3)
creator = "Unknown";
else
@@ -698,7 +698,7 @@ PluginSelector::create_by_creator_menu (ARDOUR::PluginInfoList& all_plugs)
// Check to see if we found any invalid characters.
if (creator.length() != pos) {
// If there were too few characters to create a
- // meaningfule name, mark this creator as 'Unknown'
+ // meaningful name, mark this creator as 'Unknown'
if (pos<3)
creator = "Unknown?";
else