aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--lib/ephy-file-chooser.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3f24767cb..c2a290e76 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2004-10-04 Christian Persch <chpe@cvs.gnome.org>
+ * lib/ephy-file-chooser.c: (ephy_file_chooser_constructor):
+
+ Set ephy icon as window icon.
+
+2004-10-04 Christian Persch <chpe@cvs.gnome.org>
+
* src/pdm-dialog.c: (pdm_dialog_init):
Set ephy icon as window icon.
diff --git a/lib/ephy-file-chooser.c b/lib/ephy-file-chooser.c
index 2494c9e38..156937509 100644
--- a/lib/ephy-file-chooser.c
+++ b/lib/ephy-file-chooser.c
@@ -119,6 +119,8 @@ ephy_file_chooser_constructor (GType type,
(GTK_FILE_CHOOSER (object), downloads_dir, NULL);
g_free (downloads_dir);
+ gtk_window_set_icon_name (GTK_WINDOW (object), "web-browser");
+
return object;
}