summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-07-28 11:39:06 +0200
committerraveit65 <[email protected]>2016-07-28 21:48:14 +0200
commit0636d9f08e4e0bade1700784ecbc22950d9ac281 (patch)
tree827a919c60433ff3e5f499fdca5e7c998d31b34b
parente2769ec922b622ca9362eb93271949aa42eecc44 (diff)
downloadmate-panel-0636d9f08e4e0bade1700784ecbc22950d9ac281.tar.bz2
mate-panel-0636d9f08e4e0bade1700784ecbc22950d9ac281.tar.xz
panel-context-menu: use GtkAbout and update copyright
-rw-r--r--mate-panel/panel-context-menu.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/mate-panel/panel-context-menu.c b/mate-panel/panel-context-menu.c
index efda10cd..85288ef5 100644
--- a/mate-panel/panel-context-menu.c
+++ b/mate-panel/panel-context-menu.c
@@ -34,8 +34,6 @@
#include <glib/gi18n.h>
#include <gdk/gdkkeysyms.h>
-#include <libmate-desktop/mate-aboutdialog.h>
-
#include <libpanel-util/panel-error.h>
#include <libpanel-util/panel-show.h>
@@ -132,15 +130,12 @@ panel_context_menu_show_about_dialog (GtkWidget *menuitem)
for (i = 0; authors [i]; i++)
authors [i] = _(authors [i]);
- /* Note: we don't use gtk_show_about_dialog() since some applets can
- * be loaded in this process and we don't want to share the about
- * dialog */
- about = mate_about_dialog_new ();
+ about = gtk_about_dialog_new ();
g_object_set (about,
"program-name", _("The MATE Panel"),
"version", VERSION,
"copyright", "Copyright \xc2\xa9 1997-2003 Free Software Foundation, Inc.\n"
- "Copyright \xc2\xa9 2011-2014 MATE Developers.",
+ "Copyright \xc2\xa9 2011-2016 MATE Developers.",
"comments", _("This program is responsible for launching other "
"applications and provides useful utilities."),
"authors", authors,