summaryrefslogtreecommitdiff
path: root/gedit/gedit-commands-help.c
diff options
context:
space:
mode:
authorSébastien Wilmet <swilmet@informatique-libre.be>2022-07-15 10:49:56 +0200
committerSébastien Wilmet <swilmet@informatique-libre.be>2022-07-15 10:49:56 +0200
commit5164375a7281513ca476cb16af3e7cda5552944e (patch)
tree7ffdc81895564526f7b378714b863ea5359ef13d /gedit/gedit-commands-help.c
parent661db63099b60b3bec154924c1b8289e6f94f65f (diff)
downloadgedit-5164375a7281513ca476cb16af3e7cda5552944e.tar.gz
Revert "Merge branch 'master' into wip/next"
This reverts commit 661db63099b60b3bec154924c1b8289e6f94f65f, reversing changes made to a8cb2b57f91f90f1659b6ade923687c250fd4b4e. It is to basically come back to: commit a8cb2b57f91f90f1659b6ade923687c250fd4b4e the previous version of gedit based on the Tepl library. The goal is to continue the gedit development (on master), but based on the Tepl library.
Diffstat (limited to 'gedit/gedit-commands-help.c')
-rw-r--r--gedit/gedit-commands-help.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/gedit/gedit-commands-help.c b/gedit/gedit-commands-help.c
index 477627215..0e3dd573c 100644
--- a/gedit/gedit-commands-help.c
+++ b/gedit/gedit-commands-help.c
@@ -102,33 +102,21 @@ _gedit_cmd_help_about (GeditWindow *window)
NULL
};
- GdkPixbuf *logo;
- GError *error = NULL;
-
gedit_debug (DEBUG_COMMANDS);
- logo = gdk_pixbuf_new_from_resource ("/org/gnome/gedit/pixmaps/gedit-logo.png", &error);
- if (error != NULL)
- {
- g_warning ("Error when loading the gedit logo: %s", error->message);
- g_clear_error (&error);
- }
-
gtk_show_about_dialog (GTK_WINDOW (window),
"program-name", "gedit",
"authors", authors,
"comments", _("gedit is a small and lightweight text editor for the GNOME desktop"),
- "copyright", "Copyright 1998-2021 – the gedit team",
+ "copyright", "Copyright 1998-2020 – the gedit team",
"license-type", GTK_LICENSE_GPL_2_0,
- "logo", logo,
+ "logo-icon-name", "org.gnome.gedit",
"documenters", documenters,
"translator-credits", _("translator-credits"),
"version", VERSION,
"website", "http://www.gedit.org",
"website-label", "www.gedit.org",
NULL);
-
- g_clear_object (&logo);
}
/* ex:set ts=8 noet: */