summaryrefslogtreecommitdiff
path: root/mateweather
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-07-31 11:34:02 +0200
committerraveit65 <[email protected]>2016-07-31 12:03:55 +0200
commitdac9cf2235721d3efbb3abd6273f8355384d27b9 (patch)
treeed8a8e8268b7fca5ec77223f9d5e038dbb64bebb /mateweather
parent6770e908aba46c8d3b67abe87fbe6300f2c037ff (diff)
downloadmate-applets-dac9cf2235721d3efbb3abd6273f8355384d27b9.tar.bz2
mate-applets-dac9cf2235721d3efbb3abd6273f8355384d27b9.tar.xz
mateweather: use GtkAbout and update copyright
Diffstat (limited to 'mateweather')
-rw-r--r--mateweather/mateweather-about.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/mateweather/mateweather-about.c b/mateweather/mateweather-about.c
index 2fb72b34..dff7896a 100644
--- a/mateweather/mateweather-about.c
+++ b/mateweather/mateweather-about.c
@@ -18,8 +18,6 @@
#include <stdlib.h>
#include <assert.h>
-#include <libmate-desktop/mate-aboutdialog.h>
-
#define MATEWEATHER_I_KNOW_THIS_IS_UNSTABLE
#include "mateweather.h"
@@ -37,6 +35,10 @@ void mateweather_about_run(MateWeatherApplet* gw_applet)
NULL
};
+ char copyright[] = \
+ "Copyright \xc2\xa9 2012-2016 MATE developers\n"
+ "Copyright \xC2\xA9 1999-2005 by S. Papadimitriou and others";
+
const gchar* documenters[] = {
"Dan Mueth <[email protected]>",
"Spiros Papadimitriou <[email protected]>",
@@ -45,9 +47,9 @@ void mateweather_about_run(MateWeatherApplet* gw_applet)
NULL
};
- mate_show_about_dialog(NULL,
+ gtk_show_about_dialog(NULL,
"version", VERSION,
- "copyright", _("\xC2\xA9 1999-2005 by S. Papadimitriou and others"),
+ "copyright", copyright,
"comments", _("A panel application for monitoring local weather conditions."),
"authors", authors,
"documenters", documenters,