diff options
Diffstat (limited to 'command/command.c')
-rw-r--r-- | command/command.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/command/command.c b/command/command.c index fa8bd128..bf9c76ca 100644 --- a/command/command.c +++ b/command/command.c @@ -28,7 +28,6 @@ #include <glib/gi18n.h> #include <gio/gio.h> #include <gtk/gtk.h> -#include <libmate-desktop/mate-aboutdialog.h> #include <mate-panel-applet.h> #include <mate-panel-applet-gsettings.h> @@ -108,9 +107,13 @@ command_about_callback (GtkAction *action, CommandApplet *command_applet) { const char* authors[] = { "Stefano Karapetsas <[email protected]>", NULL }; - mate_show_about_dialog(NULL, + char copyright[] = \ + "Copyright \xc2\xa9 2015-2016 MATE developers\n" + "Copyright \xc2\xa9 2013-2014 Stefano Karapetsas"; + + gtk_show_about_dialog(NULL, "version", VERSION, - "copyright", "Copyright © 2013-2014 Stefano Karapetsas", + "copyright", copyright, "authors", authors, "comments", _("Shows the output of a command"), "translator-credits", _("translator-credits"), |