Code

remove 'Preferences' from dialog title, as discussed on ml
authorbuliabyak <buliabyak@users.sourceforge.net>
Mon, 29 May 2006 02:03:23 +0000 (02:03 +0000)
committerbuliabyak <buliabyak@users.sourceforge.net>
Mon, 29 May 2006 02:03:23 +0000 (02:03 +0000)
src/extension/prefdialog.cpp

index 3058b939f5df0e66a347a4c09dc83d2e87709641..4265f9c475a1d0c5f681cfcd03200efdcc8c8136 100644 (file)
@@ -30,7 +30,7 @@ PrefDialog::PrefDialog (Glib::ustring name, gchar const * help, Gtk::Widget * co
     Gtk::Dialog::Dialog("Temp Title", true, true), _help(help), _name(name)
 {
     /* A hack to internationalize the title properly */
-    gchar * title = g_strdup_printf(_("%s Preferences"), name.c_str());
+    gchar * title = g_strdup_printf("%s", name.c_str());
     this->set_title(title);
     g_free(title);