summaryrefslogtreecommitdiff
path: root/timerapplet
diff options
context:
space:
mode:
Diffstat (limited to 'timerapplet')
-rw-r--r--timerapplet/timerapplet.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/timerapplet/timerapplet.c b/timerapplet/timerapplet.c
index e2eb3349..1f5fd662 100644
--- a/timerapplet/timerapplet.c
+++ b/timerapplet/timerapplet.c
@@ -30,7 +30,6 @@
#include <gtk/gtk.h>
#include <libnotify/notify.h>
-#include <libmate-desktop/mate-aboutdialog.h>
#include <mate-panel-applet.h>
#include <mate-panel-applet-gsettings.h>
@@ -253,9 +252,13 @@ timer_about_callback (GtkAction *action, TimerApplet *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 2014 Stefano Karapetsas";
+
+ gtk_show_about_dialog(NULL,
"version", VERSION,
- "copyright", "Copyright © 2014 Stefano Karapetsas",
+ "copyright", copyright,
"authors", authors,
"comments", _("Start a timer and receive a notification when it is finished"),
"translator-credits", _("translator-credits"),