summaryrefslogtreecommitdiff
path: root/gedit/gedit-commands-help.c
diff options
context:
space:
mode:
authorPaolo Borelli <pborelli@katamail.com>2008-08-13 20:04:04 +0000
committerPaolo Borelli <pborelli@src.gnome.org>2008-08-13 20:04:04 +0000
commit6b50e882e4928bb7a46faf5a84d0cefdddb9bf67 (patch)
tree14b94fcccb7d2779731ea4ae2d953aac368c66c0 /gedit/gedit-commands-help.c
parent15a3b561616dfa2a06d0c3aefdafb3d5ddbb6841 (diff)
downloadgedit-6b50e882e4928bb7a46faf5a84d0cefdddb9bf67.tar.gz
Use the "program-name" property for the about dialog
2008-08-13 Paolo Borelli <pborelli@katamail.com> * gedit/gedit-commands-help.c: * gedit/gedit-plugins-manager.c: Use the "program-name" property for the about dialog svn path=/trunk/; revision=6406
Diffstat (limited to 'gedit/gedit-commands-help.c')
-rw-r--r--gedit/gedit-commands-help.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gedit/gedit-commands-help.c b/gedit/gedit-commands-help.c
index 01d10ee4e..68a0c3712 100644
--- a/gedit/gedit-commands-help.c
+++ b/gedit/gedit-commands-help.c
@@ -43,7 +43,7 @@
void
_gedit_cmd_help_contents (GtkAction *action,
- GeditWindow *window)
+ GeditWindow *window)
{
gedit_debug (DEBUG_COMMANDS);
@@ -52,7 +52,7 @@ _gedit_cmd_help_contents (GtkAction *action,
void
_gedit_cmd_help_about (GtkAction *action,
- GeditWindow *window)
+ GeditWindow *window)
{
static const gchar * const authors[] = {
"Paolo Maggi <paolo@gnome.org>",
@@ -88,6 +88,7 @@ _gedit_cmd_help_about (GtkAction *action,
NULL);
gtk_show_about_dialog (GTK_WINDOW (window),
+ "program-name", "gedit",
"authors", authors,
"comments", _(comments),
"copyright", copyright,
@@ -96,7 +97,6 @@ _gedit_cmd_help_about (GtkAction *action,
"translator-credits", _("translator-credits"),
"version", VERSION,
"website", "http://www.gedit.org",
- "name", "gedit",
NULL);
if (logo)