From 68190bd716d4b9458af4b2a739f2b6f896884875 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sun, 21 Mar 2004 14:27:33 +0000 Subject: Forgot to s/logo/icon/g. 2004-03-21 Christian Persch * src/window-commands.c: (window_cmd_help_about): Forgot to s/logo/icon/g. --- src/window-commands.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/window-commands.c') diff --git a/src/window-commands.c b/src/window-commands.c index 218e4d8ed..2611dcbe6 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -901,7 +901,7 @@ window_cmd_help_about (GtkAction *action, static GtkWidget *about = NULL; GtkWidget** ptr; const char *icon_path; - GdkPixbuf *logo = NULL; + GdkPixbuf *icon = NULL; GtkIconTheme *icon_theme; GtkIconInfo *icon_info; @@ -940,7 +940,7 @@ window_cmd_help_about (GtkAction *action, if (icon_path != NULL) { - logo = gdk_pixbuf_new_from_file (icon_path, NULL); + icon = gdk_pixbuf_new_from_file (icon_path, NULL); } } else @@ -955,13 +955,13 @@ window_cmd_help_about (GtkAction *action, (const char **)authors, (const char **)documenters, strcmp (translator_credits, "translator-credits") != 0 ? translator_credits : NULL, - logo); + icon); - gtk_window_set_icon (GTK_WINDOW (about), logo); + gtk_window_set_icon (GTK_WINDOW (about), icon); - if (logo != NULL) + if (icon != NULL) { - g_object_unref (logo); + g_object_unref (icon); } gtk_window_set_transient_for (GTK_WINDOW (about), -- cgit v1.2.3