summaryrefslogtreecommitdiff
path: root/pluma/pluma-commands-help.c
diff options
context:
space:
mode:
authorPerberos <[email protected]>2011-11-23 17:57:00 -0300
committerPerberos <[email protected]>2011-11-23 17:57:00 -0300
commit584d672f069e58afe3252ef55f309de951078cf7 (patch)
tree0bf417f43e98d2c8452b85c24da20b938b13c235 /pluma/pluma-commands-help.c
parent267fbd64ccc4786932147069715239a17dfcf814 (diff)
downloadpluma-584d672f069e58afe3252ef55f309de951078cf7.tar.bz2
pluma-584d672f069e58afe3252ef55f309de951078cf7.tar.xz
using generic logo
Diffstat (limited to 'pluma/pluma-commands-help.c')
-rwxr-xr-xpluma/pluma-commands-help.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/pluma/pluma-commands-help.c b/pluma/pluma-commands-help.c
index 743cacbb..de925eb9 100755
--- a/pluma/pluma-commands-help.c
+++ b/pluma/pluma-commands-help.c
@@ -83,28 +83,15 @@ void _pluma_cmd_help_about(GtkAction* action, PlumaWindow* window)
pluma_debug (DEBUG_COMMANDS);
- GdkPixbuf* logo = NULL;
- GtkIconTheme* icon_theme = gtk_icon_theme_get_default();
-
- if (gtk_icon_theme_has_icon(icon_theme, "accessories-text-editor"))
- {
- logo = gtk_icon_theme_load_icon(icon_theme, "accessories-text-editor", 64, 0, NULL);
- }
-
gtk_show_about_dialog (GTK_WINDOW (window),
"program-name", "Pluma",
"authors", authors,
"comments", _(comments),
"copyright", copyright,
"documenters", documenters,
- "logo", logo,
+ "logo_icon_name", "accessories-text-editor",
"translator-credits", _("translator-credits"),
"version", VERSION,
"website", "http://matsusoft.com.ar/projects/mate/",
NULL);
-
- if (logo)
- {
- g_object_unref(logo);
- }
}