diff options
Diffstat (limited to 'geyes')
-rw-r--r-- | geyes/geyes.c | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/geyes/geyes.c b/geyes/geyes.c index 0f2a9d20..2c7267cd 100644 --- a/geyes/geyes.c +++ b/geyes/geyes.c @@ -20,7 +20,6 @@ #include <config.h> #include <math.h> #include <stdlib.h> -#include <libmate-desktop/mate-aboutdialog.h> #include <mate-panel-applet.h> #include <mate-panel-applet-gsettings.h> #include "geyes.h" @@ -175,11 +174,15 @@ static void about_cb (GtkAction *action, EyesApplet *eyes_applet) { - static const gchar *authors [] = { - "Dave Camp <[email protected]>", - NULL + static const gchar *authors [] = { + "Dave Camp <[email protected]>", + NULL }; + char copyright[] = \ + "Copyright \xc2\xa9 2012-2016 MATE developers\n" + "Copyright \xC2\xA9 1999 Dave Camp"; + const gchar *documenters[] = { "Arjan Scherpenisse <[email protected]>", "Telsa Gwynne <[email protected]>", @@ -187,15 +190,15 @@ about_cb (GtkAction *action, NULL }; - mate_show_about_dialog (NULL, - "version", VERSION, - "comments", _("A goofy set of eyes for the MATE " - "panel. They follow your mouse."), - "copyright", "\xC2\xA9 1999 Dave Camp", - "authors", authors, - "documenters", documenters, - "translator-credits", _("translator-credits"), - "logo-icon-name", "mate-eyes-applet", + gtk_show_about_dialog (NULL, + "version", VERSION, + "comments", _("A goofy set of eyes for the MATE " + "panel. They follow your mouse."), + "copyright", copyright, + "authors", authors, + "documenters", documenters, + "translator-credits", _("translator-credits"), + "logo-icon-name", "mate-eyes-applet", NULL); } |