diff options
author | raveit65 <[email protected]> | 2016-07-31 00:19:12 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-07-31 11:54:28 +0200 |
commit | 5316e30819d5098fa578f5a536859d3c96f9feac (patch) | |
tree | daf0be0f2cfa42faae1137460b9ea77194658ac7 | |
parent | ebc6e92841423d4bf106f449be675d23d32efcae (diff) | |
download | mate-applets-5316e30819d5098fa578f5a536859d3c96f9feac.tar.bz2 mate-applets-5316e30819d5098fa578f5a536859d3c96f9feac.tar.xz |
timerapplet: use GtkAbout and update copyright
-rw-r--r-- | timerapplet/timerapplet.c | 9 |
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"), |