diff options
author | raveit65 <[email protected]> | 2016-07-30 22:34:49 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-07-31 11:39:42 +0200 |
commit | 93a9a673d7570645ba861b7fa065c0a3ce315c51 (patch) | |
tree | 3da5894ff7e87b236009e428153b9b5b8777a66d /command | |
parent | 7c9b606d6499ff79a3cebae2d2971633e38aa66d (diff) | |
download | mate-applets-93a9a673d7570645ba861b7fa065c0a3ce315c51.tar.bz2 mate-applets-93a9a673d7570645ba861b7fa065c0a3ce315c51.tar.xz |
command: drop MateAbout and update copyright
Diffstat (limited to 'command')
-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"), |