diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-03-21 22:27:33 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-03-21 22:27:33 +0800 |
commit | 68190bd716d4b9458af4b2a739f2b6f896884875 (patch) | |
tree | 82666d3e2fd6689e320e8b7e7d0c36a1bfc26b32 /src | |
parent | ca4230a44b7c2ad6fd1719771af0b576c11e3478 (diff) | |
download | gsoc2013-epiphany-68190bd716d4b9458af4b2a739f2b6f896884875.tar gsoc2013-epiphany-68190bd716d4b9458af4b2a739f2b6f896884875.tar.gz gsoc2013-epiphany-68190bd716d4b9458af4b2a739f2b6f896884875.tar.bz2 gsoc2013-epiphany-68190bd716d4b9458af4b2a739f2b6f896884875.tar.lz gsoc2013-epiphany-68190bd716d4b9458af4b2a739f2b6f896884875.tar.xz gsoc2013-epiphany-68190bd716d4b9458af4b2a739f2b6f896884875.tar.zst gsoc2013-epiphany-68190bd716d4b9458af4b2a739f2b6f896884875.zip |
Forgot to s/logo/icon/g.
2004-03-21 Christian Persch <chpe@cvs.gnome.org>
* src/window-commands.c: (window_cmd_help_about):
Forgot to s/logo/icon/g.
Diffstat (limited to 'src')
-rw-r--r-- | src/window-commands.c | 12 |
1 files changed, 6 insertions, 6 deletions
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), |