aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/bookmarks/ephy-bookmarks-editor.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9541857bd..6f66a8f83 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-03-23 David Bordoley <bordoley@msu.edu>
+
+ * src/bookmarks/ephy-bookmarks-editor.c:
+ Use the ephy-bookmarks.png for the window icon.
+
2003-03-23 Xan Lopez <xan@masilla.org>
* src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init):
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c
index 8a0a94f0f..6866de26c 100644
--- a/src/bookmarks/ephy-bookmarks-editor.c
+++ b/src/bookmarks/ephy-bookmarks-editor.c
@@ -567,6 +567,7 @@ ephy_bookmarks_editor_construct (EphyBookmarksEditor *editor)
char *selected_id_str;
EggMenuMerge *ui_merge;
EggActionGroup *action_group;
+ const char *icon_path;
int i;
g_signal_connect (editor, "delete_event",
@@ -595,6 +596,8 @@ ephy_bookmarks_editor_construct (EphyBookmarksEditor *editor)
editor->priv->ui_merge = ui_merge;
editor->priv->action_group = action_group;
+ icon_path = ephy_file ("epiphany-bookmarks.png");
+ gtk_window_set_icon_from_file (GTK_WINDOW (editor), icon_path, NULL);
gtk_window_set_title (GTK_WINDOW (editor), _("Bookmarks"));
gtk_widget_set_size_request (GTK_WIDGET (editor), 500, 450);