summaryrefslogtreecommitdiff
path: root/trashapplet
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-07-31 00:22:26 +0200
committerraveit65 <[email protected]>2016-07-31 11:55:19 +0200
commit6770e908aba46c8d3b67abe87fbe6300f2c037ff (patch)
tree4915f6b2c3652b93991c103cbd0a40260b1fab70 /trashapplet
parent5316e30819d5098fa578f5a536859d3c96f9feac (diff)
downloadmate-applets-6770e908aba46c8d3b67abe87fbe6300f2c037ff.tar.bz2
mate-applets-6770e908aba46c8d3b67abe87fbe6300f2c037ff.tar.xz
trash-applet: use GtkAbout and update copyright
Diffstat (limited to 'trashapplet')
-rw-r--r--trashapplet/src/trashapplet.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/trashapplet/src/trashapplet.c b/trashapplet/src/trashapplet.c
index 7b297aab..e406dfb2 100644
--- a/trashapplet/src/trashapplet.c
+++ b/trashapplet/src/trashapplet.c
@@ -31,7 +31,6 @@
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include <gio/gio.h>
-#include <libmate-desktop/mate-aboutdialog.h>
#include <mate-panel-applet.h>
#include "trash-empty.h"
@@ -420,15 +419,20 @@ trash_applet_show_about (GtkAction *action,
"Ryan Lortie <[email protected]>",
NULL
};
+
+ char copyright[] = \
+ "Copyright \xc2\xa9 2012-2016 MATE developers\n"
+ "Copyright \xc2\xa9 2008 Ryan Lortie\n"
+ "Copyright \xc2\xa9 2004 Michiel Sikkes";
+
static const char *documenters[] = {
"Michiel Sikkes <[email protected]>",
NULL
};
- mate_show_about_dialog (NULL,
+ gtk_show_about_dialog (NULL,
"version", VERSION,
- "copyright", "Copyright \xC2\xA9 2004 Michiel Sikkes,"
- "\xC2\xA9 2008 Ryan Lortie",
+ "copyright", copyright,
"comments", _("A MATE trash bin that lives in your panel. "
"You can use it to view the trash or drag "
"and drop items into the trash."),