diff options
Diffstat (limited to 'src/ephy-favicon-action.c')
-rw-r--r-- | src/ephy-favicon-action.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ephy-favicon-action.c b/src/ephy-favicon-action.c index bb9707b5d..86b567095 100644 --- a/src/ephy-favicon-action.c +++ b/src/ephy-favicon-action.c @@ -17,7 +17,6 @@ */ #include "ephy-favicon-action.h" -#include "eggtoolitem.h" #include "ephy-window.h" #include "ephy-tab.h" #include "ephy-dnd.h" @@ -26,6 +25,10 @@ #include "ephy-event-box.h" #include "ephy-debug.h" +#include <gtk/gtktoolitem.h> +#include <gtk/gtkimage.h> +#include <gtk/gtkstock.h> + static GtkTargetEntry url_drag_types [] = { { EPHY_DND_URI_LIST_TYPE, 0, 0 }, @@ -127,7 +130,7 @@ create_tool_item (GtkAction *action) GtkWidget *ebox; GtkWidget *item; - item = GTK_WIDGET (egg_tool_item_new ()); + item = GTK_WIDGET (gtk_tool_item_new ()); ebox = ephy_event_box_new (); image = gtk_image_new (); |