diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-10-05 05:03:43 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-10-05 05:03:43 +0800 |
commit | cfb26886967078899fdd8aefa3560b4626a3d29f (patch) | |
tree | 985eb1466565405b399924d9bb6207f18661715e | |
parent | e889ef175ec5bd29379bf1d89816b54c8b776c72 (diff) | |
download | gsoc2013-epiphany-cfb26886967078899fdd8aefa3560b4626a3d29f.tar.gz gsoc2013-epiphany-cfb26886967078899fdd8aefa3560b4626a3d29f.tar.zst gsoc2013-epiphany-cfb26886967078899fdd8aefa3560b4626a3d29f.zip |
Set ephy icon as window icon.
2004-10-04 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-file-chooser.c: (ephy_file_chooser_constructor):
Set ephy icon as window icon.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/ephy-file-chooser.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -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; } |