diff options
| author | raveit65 <[email protected]> | 2016-07-31 00:03:26 +0200 | 
|---|---|---|
| committer | raveit65 <[email protected]> | 2016-07-31 11:52:57 +0200 | 
| commit | 19e86c60f34d9de6510b2a737af8a9af652630c8 (patch) | |
| tree | 5cbb5d5d01fac56bdc397f03985eaad601cbe3bd | |
| parent | f711ac736b6037af3947de3baef10c6ce4bfb135 (diff) | |
| download | mate-applets-19e86c60f34d9de6510b2a737af8a9af652630c8.tar.bz2 mate-applets-19e86c60f34d9de6510b2a737af8a9af652630c8.tar.xz  | |
netspeed: use GtkAbout and update copyright
| -rw-r--r-- | netspeed/src/netspeed.c | 10 | 
1 files changed, 7 insertions, 3 deletions
diff --git a/netspeed/src/netspeed.c b/netspeed/src/netspeed.c index abf6451b..cd3bf909 100644 --- a/netspeed/src/netspeed.c +++ b/netspeed/src/netspeed.c @@ -30,7 +30,6 @@  #include <glib.h>  #include <glib/gi18n.h>  #include <gio/gio.h> -#include <libmate-desktop/mate-aboutdialog.h>  #include <libmate-desktop/mate-colorbutton.h>  #include "backend.h" @@ -803,9 +802,14 @@ about_cb(GtkAction *action, gpointer data)  		NULL  	}; -	mate_show_about_dialog (NULL, +	char copyright[] = \ +		"Copyright \xc2\xa9 2015-2016 MATE developers\n" +		"Copyright \xc2\xa9 2011-2014 Stefano Karapetsas\n" +		"Copyright \xc2\xa9 2002-2003 Jörgen Scheibengruber"; + +	gtk_show_about_dialog (NULL,  			       "version", VERSION, -			       "copyright", "Copyright 2002 - 2003 Jörgen Scheibengruber\nCopyright 2011-2014 Stefano Karapetsas", +			       "copyright", copyright,  			       "comments", _("A little applet that displays some information on the traffic on the specified network device"),  			       "authors", authors,  			       "documenters", NULL,  | 
