summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-07-28 10:53:32 +0200
committerraveit65 <[email protected]>2016-07-28 21:48:14 +0200
commitb1711b5535c030f948100a088199e8a6fb8aed06 (patch)
tree3d1b09b96ff336ea8cbf02e8df613136fb46598d
parent072bc3d2c849194278d64657430e16fdd579f510 (diff)
downloadmate-panel-b1711b5535c030f948100a088199e8a6fb8aed06.tar.bz2
mate-panel-b1711b5535c030f948100a088199e8a6fb8aed06.tar.xz
fish: use GtkAbout and update copyright
-rw-r--r--applets/fish/fish.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/applets/fish/fish.c b/applets/fish/fish.c
index 35531b73..7605eece 100644
--- a/applets/fish/fish.c
+++ b/applets/fish/fish.c
@@ -39,7 +39,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 <mate-panel-applet-gsettings.h>
@@ -561,7 +560,8 @@ static void display_about_dialog(GtkAction* action, FishApplet* fish)
char* authors[3];
char* descr;
char copyright[] = \
- "Copyright \xc2\xa9 1998-2002 Free Software Foundation, Inc.";
+ "Copyright \xc2\xa9 1998-2002 Free Software Foundation, Inc.\n"
+ "Copyright \xc2\xa9 2012-2016 MATE developers";
authors[0] = g_strdup_printf(author_format, fish->name);
authors[1] = _("(with minor help from George)");
@@ -569,7 +569,7 @@ static void display_about_dialog(GtkAction* action, FishApplet* fish)
descr = g_strdup_printf(about_format, fish->name);
- mate_show_about_dialog(NULL,
+ gtk_show_about_dialog(NULL,
"program-name", _("Fish"),
"authors", authors,
"comments", descr,