summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-07-31 00:10:19 +0200
committerraveit65 <[email protected]>2016-07-31 11:54:19 +0200
commitebc6e92841423d4bf106f449be675d23d32efcae (patch)
treee77a82c6e4671e185bec5d8ff50938eeb9d9d808
parent19e86c60f34d9de6510b2a737af8a9af652630c8 (diff)
downloadmate-applets-ebc6e92841423d4bf106f449be675d23d32efcae.tar.bz2
mate-applets-ebc6e92841423d4bf106f449be675d23d32efcae.tar.xz
stickynotes: use GtkAbout and update copyright
-rw-r--r--stickynotes/stickynotes_applet_callbacks.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/stickynotes/stickynotes_applet_callbacks.c b/stickynotes/stickynotes_applet_callbacks.c
index 791f02a1..8c95ed2a 100644
--- a/stickynotes/stickynotes_applet_callbacks.c
+++ b/stickynotes/stickynotes_applet_callbacks.c
@@ -24,7 +24,6 @@
#include <gdk/gdkkeysyms.h>
#include <X11/Xatom.h>
#include <gdk/gdkx.h>
-#include <libmate-desktop/mate-aboutdialog.h>
static gboolean get_desktop_window (Window *window)
{
@@ -362,16 +361,20 @@ menu_about_cb (GtkAction *action,
NULL
};
+ char copyright[] = \
+ "Copyright \xc2\xa9 2012-2016 MATE developers\n"
+ "Copyright \xc2\xa9 2005 Davyd Madeley\n"
+ "Copyright \xc2\xa9 2002-2003 Loban A Rahman";
+
static const gchar *documenters[] = {
"Loban A Rahman <[email protected]>",
"Sun GNOME Documentation Team <[email protected]>",
NULL
};
- mate_show_about_dialog (NULL,
+ gtk_show_about_dialog (NULL,
"version", VERSION,
- "copyright", "\xC2\xA9 2002-2003 Loban A Rahman, "
- "\xC2\xA9 2005 Davyd Madeley",
+ "copyright", copyright,
"comments", _("Sticky Notes for the "
"MATE Desktop Environment"),
"authors", authors,