diff options
author | Xan Lopez <xan@igalia.com> | 2012-01-27 17:12:22 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-01-27 17:12:22 +0800 |
commit | 17ef6d1c777e63fdbbb11cf2afb21bbe5c1acfa4 (patch) | |
tree | 13facdcc6f246a6d541259dc2d6128c82e599800 /lib | |
parent | 86a17ef48fd7a3e549b5d0cd9dc57a59ad233332 (diff) | |
download | gsoc2013-epiphany-17ef6d1c777e63fdbbb11cf2afb21bbe5c1acfa4.tar gsoc2013-epiphany-17ef6d1c777e63fdbbb11cf2afb21bbe5c1acfa4.tar.gz gsoc2013-epiphany-17ef6d1c777e63fdbbb11cf2afb21bbe5c1acfa4.tar.bz2 gsoc2013-epiphany-17ef6d1c777e63fdbbb11cf2afb21bbe5c1acfa4.tar.lz gsoc2013-epiphany-17ef6d1c777e63fdbbb11cf2afb21bbe5c1acfa4.tar.xz gsoc2013-epiphany-17ef6d1c777e63fdbbb11cf2afb21bbe5c1acfa4.tar.zst gsoc2013-epiphany-17ef6d1c777e63fdbbb11cf2afb21bbe5c1acfa4.zip |
And remove the last stock icon, bookmarks
We can kill data/icons now.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.am | 1 | ||||
-rw-r--r-- | lib/ephy-stock-icons.c | 66 | ||||
-rw-r--r-- | lib/ephy-stock-icons.h | 5 |
3 files changed, 0 insertions, 72 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 2a1ec7556..a2826fe2f 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -67,7 +67,6 @@ libephymisc_la_SOURCES = \ ephy-smaps.c \ ephy-state.c \ ephy-string.c \ - ephy-stock-icons.c \ ephy-time-helpers.c \ ephy-zoom.c \ $(INST_H_FILES) \ diff --git a/lib/ephy-stock-icons.c b/lib/ephy-stock-icons.c deleted file mode 100644 index 0cbb5f81b..000000000 --- a/lib/ephy-stock-icons.c +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright © 2002 Jorn Baayen - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - */ - -#include "config.h" - -#include <gtk/gtk.h> -#include <glib/gi18n.h> - -#include "ephy-stock-icons.h" - -void -ephy_stock_icons_init (void) -{ - GtkIconFactory *factory; - GtkIconSet *icon_set; - GtkIconSource *icon_source; - int i; - - static const GtkStockItem items[] = - { - { EPHY_STOCK_BOOKMARKS, N_("Bookmarks"), 0, 0, NULL } - }; - - factory = gtk_icon_factory_new (); - - for (i = 0; i < (int) G_N_ELEMENTS (items); i++) - { - icon_source = gtk_icon_source_new (); - gtk_icon_source_set_icon_name (icon_source, items[i].stock_id); - - icon_set = gtk_icon_set_new (); - gtk_icon_set_add_source (icon_set, icon_source); - gtk_icon_source_free (icon_source); - - gtk_icon_factory_add (factory, items[i].stock_id, icon_set); - gtk_icon_set_unref (icon_set); - } - - gtk_stock_add_static (items, G_N_ELEMENTS (items)); - - gtk_icon_factory_add_default (factory); - g_object_unref (factory); - - /* GtkIconTheme will then look in Ephy custom hicolor dir - * for icons as well as the standard search paths - */ - /* FIXME: multi-head! */ - gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (), - SHARE_DIR G_DIR_SEPARATOR_S "icons"); -} diff --git a/lib/ephy-stock-icons.h b/lib/ephy-stock-icons.h index 3b8bba324..9bf6ec52d 100644 --- a/lib/ephy-stock-icons.h +++ b/lib/ephy-stock-icons.h @@ -28,11 +28,6 @@ G_BEGIN_DECLS #define EPHY_STOCK_EPHY "web-browser" -/* Custom Epiphany named icons */ -#define EPHY_STOCK_BOOKMARKS "bookmark-view" - -void ephy_stock_icons_init (void); - G_END_DECLS #endif /* EPHY_STOCK_ICONS_H */ |