summaryrefslogtreecommitdiff
path: root/mate-dictionary
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-03-20 18:00:59 +0100
committerraveit65 <[email protected]>2019-03-24 11:03:44 +0100
commit0080da43241fcccb27bc9becd4df7583a3efb7a6 (patch)
treeb2caf4452565a1566f8db99b799fb378c34ab803 /mate-dictionary
parent3609263e243e547e1741f25074755586798e2293 (diff)
downloadmate-utils-0080da43241fcccb27bc9becd4df7583a3efb7a6.tar.bz2
mate-utils-0080da43241fcccb27bc9becd4df7583a3efb7a6.tar.xz
Use program-name and title in gtk_show_about_dialog call
Diffstat (limited to 'mate-dictionary')
-rw-r--r--mate-dictionary/src/gdict-about.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mate-dictionary/src/gdict-about.c b/mate-dictionary/src/gdict-about.c
index 57c972d8..dbd13698 100644
--- a/mate-dictionary/src/gdict-about.c
+++ b/mate-dictionary/src/gdict-about.c
@@ -74,8 +74,9 @@ gdict_show_about_dialog (GtkWidget *parent)
g_return_if_fail (GTK_IS_WIDGET (parent));
gtk_show_about_dialog (GTK_IS_WINDOW (parent) ? GTK_WINDOW (parent) : NULL,
- "name", _("Dictionary"),
+ "program-name", _("Dictionary"),
"version", VERSION,
+ "title", _("About Dictionary"),
"copyright", _("Copyright \xc2\xa9 2005-2006 Emmanuele Bassi\n"
"Copyright \xc2\xa9 2011-2019 MATE developers"),
"comments", comments,