summaryrefslogtreecommitdiff
path: root/libs/surfaces/osc/osc_gui.cc
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2017-04-21 07:29:13 -0700
committerLen Ovens <len@ovenwerks.net>2017-04-21 07:29:13 -0700
commit2012dc25530e787083863dfe69b34990fad52e0a (patch)
treea70ab305dd3308061769910c6d1c52961a3b94c8 /libs/surfaces/osc/osc_gui.cc
parentea1769d711924e0d722c21a5d28b0aacde986aad (diff)
OSC: correct spelling
Diffstat (limited to 'libs/surfaces/osc/osc_gui.cc')
-rw-r--r--libs/surfaces/osc/osc_gui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaces/osc/osc_gui.cc b/libs/surfaces/osc/osc_gui.cc
index 9c07bb40d5..6276f66d86 100644
--- a/libs/surfaces/osc/osc_gui.cc
+++ b/libs/surfaces/osc/osc_gui.cc
@@ -764,7 +764,7 @@ OSC_GUI::save_user ()
std::string fullpath = user_preset_directory();
if (g_mkdir_with_parents (fullpath.c_str(), 0755) < 0) {
- error << string_compose(_("Session: cannot create user MCP profile folder \"%1\" (%2)"), fullpath, strerror (errno)) << endmsg;
+ error << string_compose(_("Session: cannot create user OSC profile folder \"%1\" (%2)"), fullpath, strerror (errno)) << endmsg;
return;
}
@@ -804,7 +804,7 @@ OSC_GUI::save_user ()
tree.set_root (node);
if (!tree.write (fullpath)) {
- error << string_compose ("MCP profile not saved to %1", fullpath) << endmsg;
+ error << string_compose ("OSC profile not saved to %1", fullpath) << endmsg;
}
preset_combo.set_active (2);
cp.gui_changed();