From e47814bfadf34a954531ebbb61a45c4730ccc4d5 Mon Sep 17 00:00:00 2001 From: David Bordoley Date: Mon, 19 May 2003 19:46:35 +0000 Subject: Use stock icons instead of the files directly to set window border icons. 2003-05-19 David Bordoley * embed/downloader-view.c: (downloader_view_build_ui): * lib/ephy-stock-icons.c: (ephy_stock_icons_init): * lib/ephy-stock-icons.h: * src/ephy-history-window.c: (ephy_history_window_construct): * src/bookmarks/ephy-bookmarks-editor.c: (ephy_bookmarks_editor_construct): Use stock icons instead of the files directly to set window border icons. --- src/bookmarks/ephy-bookmarks-editor.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/bookmarks') diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 940c7595b..a716fd9fa 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -30,7 +30,6 @@ #include #include #include -#include #include #include @@ -53,6 +52,7 @@ #include "window-commands.h" #include "ephy-debug.h" #include "ephy-gui.h" +#include "ephy-stock-icons.h" static GtkTargetEntry topic_drag_dest_types [] = { @@ -1114,14 +1114,16 @@ ephy_bookmarks_editor_construct (EphyBookmarksEditor *editor) EggMenuMerge *ui_merge; EggActionGroup *action_group; EggAction *action; - const char *icon_path; + GdkPixbuf *icon; int i; gtk_window_set_title (GTK_WINDOW (editor), _("Bookmarks")); - icon_path = gnome_program_locate_file (NULL, GNOME_FILE_DOMAIN_APP_PIXMAP, - "epiphany-bookmarks.png", TRUE, NULL); - gtk_window_set_icon_from_file (GTK_WINDOW (editor), icon_path, NULL); + icon = gtk_widget_render_icon (GTK_WINDOW (editor), + EPHY_STOCK_BOOKMARKS, + GTK_ICON_SIZE_MENU, + NULL); + gtk_window_set_icon (GTK_WINDOW(editor), icon); g_signal_connect (editor, "delete_event", G_CALLBACK (delete_event_cb), NULL); -- cgit v1.2.3