diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-fullscreen-popup.c | 3 | ||||
-rwxr-xr-x | src/ephy-toolbar.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/ephy-fullscreen-popup.c b/src/ephy-fullscreen-popup.c index 850f13908..bf6795cc0 100644 --- a/src/ephy-fullscreen-popup.c +++ b/src/ephy-fullscreen-popup.c @@ -23,6 +23,7 @@ #include "ephy-fullscreen-popup.h" #include "ephy-spinner.h" +#include "ephy-stock-icons.h" #include "ephy-debug.h" #include <glib/gi18n.h> @@ -275,7 +276,7 @@ ephy_fullscreen_popup_constructor (GType type, gtk_container_add (GTK_CONTAINER (priv->button), button_hbox); gtk_widget_show (button_hbox); - icon = gtk_image_new_from_stock (GTK_STOCK_QUIT, GTK_ICON_SIZE_BUTTON); + icon = gtk_image_new_from_stock (STOCK_LEAVE_FULLSCREEN, GTK_ICON_SIZE_BUTTON); gtk_box_pack_start (GTK_BOX (button_hbox), icon, FALSE, FALSE, 0); gtk_widget_show (icon); diff --git a/src/ephy-toolbar.c b/src/ephy-toolbar.c index 729322109..8ece4642a 100755 --- a/src/ephy-toolbar.c +++ b/src/ephy-toolbar.c @@ -651,7 +651,7 @@ ephy_toolbar_constructor (GType type, priv->sep_item = gtk_separator_tool_item_new (); gtk_toolbar_insert (gtoolbar, priv->sep_item, -1); - priv->exit_button = gtk_tool_button_new_from_stock (GTK_STOCK_QUIT); + priv->exit_button = gtk_tool_button_new_from_stock (STOCK_LEAVE_FULLSCREEN); gtk_tool_button_set_label (GTK_TOOL_BUTTON (priv->exit_button), _("Leave Fullscreen")); gtk_tool_item_set_is_important (priv->exit_button, TRUE); g_signal_connect (priv->exit_button, "clicked", |