aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/ephy-stock-icons.c6
-rw-r--r--lib/ephy-stock-icons.h10
2 files changed, 5 insertions, 11 deletions
diff --git a/lib/ephy-stock-icons.c b/lib/ephy-stock-icons.c
index 2314054cc..c303b7c74 100644
--- a/lib/ephy-stock-icons.c
+++ b/lib/ephy-stock-icons.c
@@ -65,14 +65,8 @@ ephy_stock_icons_init (void)
for (i = 0; i < (int) G_N_ELEMENTS (items); i++)
{
- char *fn;
-
icon_source = gtk_icon_source_new ();
-
- fn = g_strconcat (items[i].stock_id, ".png", NULL);
gtk_icon_source_set_icon_name (icon_source, items[i].stock_id);
- gtk_icon_source_set_filename (icon_source, ephy_file (fn));
- g_free (fn);
icon_set = gtk_icon_set_new ();
gtk_icon_set_add_source (icon_set, icon_source);
diff --git a/lib/ephy-stock-icons.h b/lib/ephy-stock-icons.h
index d58401e49..5658e68db 100644
--- a/lib/ephy-stock-icons.h
+++ b/lib/ephy-stock-icons.h
@@ -23,11 +23,11 @@
G_BEGIN_DECLS
-#define EPHY_STOCK_POPUPS "epiphany-popup-hidden"
-#define EPHY_STOCK_HISTORY "epiphany-history"
-#define EPHY_STOCK_BOOKMARKS "epiphany-bookmarks"
-#define EPHY_STOCK_ENTRY "epiphany-entry"
-#define EPHY_STOCK_DOWNLOAD "epiphany-download"
+#define EPHY_STOCK_POPUPS "popup-hidden"
+#define EPHY_STOCK_HISTORY "web-history"
+#define EPHY_STOCK_BOOKMARKS "web-bookmarks"
+#define EPHY_STOCK_ENTRY "location-entry"
+#define EPHY_STOCK_DOWNLOAD "download"
#define STOCK_NEW_TAB "tab-new"
#define STOCK_NEW_WINDOW "window-new"