diff options
author | raveit65 <[email protected]> | 2016-07-30 23:06:48 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-07-31 11:48:57 +0200 |
commit | 2459f0a14348239f145eb79e2b55079c3b4aff5b (patch) | |
tree | 2c559d8ff11caa3c833d58bdba130c396a24c183 /drivemount | |
parent | 6779b14b2671ba37b81d06871add90eae34f578f (diff) | |
download | mate-applets-2459f0a14348239f145eb79e2b55079c3b4aff5b.tar.bz2 mate-applets-2459f0a14348239f145eb79e2b55079c3b4aff5b.tar.xz |
drivemount: use GTkAbout and update copyright
Diffstat (limited to 'drivemount')
-rw-r--r-- | drivemount/drivemount.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/drivemount/drivemount.c b/drivemount/drivemount.c index 17b573c5..28904ee7 100644 --- a/drivemount/drivemount.c +++ b/drivemount/drivemount.c @@ -28,7 +28,6 @@ #include <glib/gi18n.h> #include <gtk/gtk.h> -#include <libmate-desktop/mate-aboutdialog.h> #include <mate-panel-applet.h> #include "drive-list.h" @@ -107,15 +106,19 @@ display_about_dialog (GtkAction *action, "James Henstridge <[email protected]>", NULL }; + char copyright[] = \ + "Copyright \xc2\xa9 2012-2016 MATE developers\n" + "Copyright \xC2\xA9 2004 Canonical Ltd"; + const gchar *documenters[] = { "Dan Mueth <[email protected]>", "John Fleck <[email protected]>", NULL }; - mate_show_about_dialog (NULL, + gtk_show_about_dialog (NULL, "version", VERSION, - "copyright", "Copyright \xC2\xA9 2004 Canonical Ltd", + "copyright", copyright, "comments", _("Applet for mounting and unmounting block volumes."), "authors", authors, "documenters", documenters, |