summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-12-12 11:01:56 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2015-12-12 11:12:10 -0500
commit3d1dcacfd85635f47d6f8d7f3805f343e7aca54b (patch)
tree78d7e5bce62b4b13e7676ca55a7a002dc9aa217f /libs
parentbe6a43d4d30f321cc7a3105aaf34ab6c76de6ce0 (diff)
use correct source for application name when labelling a window
Diffstat (limited to 'libs')
-rw-r--r--libs/gtkmm2ext/gtk_ui.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gtkmm2ext/gtk_ui.cc b/libs/gtkmm2ext/gtk_ui.cc
index 0c15e5e3cc..ca4d6681dc 100644
--- a/libs/gtkmm2ext/gtk_ui.cc
+++ b/libs/gtkmm2ext/gtk_ui.cc
@@ -704,7 +704,7 @@ UI::popup_error (const string& text)
MessageDialog msg (text);
msg.set_title (string_compose (_("I'm sorry %1, I can't do that"), g_get_user_name()));
- msg.set_wmclass (X_("error"), name());
+ msg.set_wmclass (X_("error"), Glib::get_application_name());
msg.set_position (WIN_POS_MOUSE);
msg.run ();
}