aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/ephy-stock-icons.c2
-rw-r--r--lib/ephy-stock-icons.h2
-rw-r--r--src/ephy-fullscreen-popup.c3
-rwxr-xr-xsrc/ephy-toolbar.c2
-rw-r--r--src/ephy-window.c2
5 files changed, 3 insertions, 8 deletions
diff --git a/lib/ephy-stock-icons.c b/lib/ephy-stock-icons.c
index ba51b0a8c..961dd50b9 100644
--- a/lib/ephy-stock-icons.c
+++ b/lib/ephy-stock-icons.c
@@ -40,7 +40,6 @@ ephy_stock_icons_init (void)
static const char *icon_theme_items[] =
{
STOCK_NEW_TAB,
- STOCK_FULLSCREEN,
STOCK_VIEW_SOURCE,
STOCK_SEND_MAIL,
STOCK_ADD_BOOKMARK,
@@ -48,7 +47,6 @@ ephy_stock_icons_init (void)
STOCK_LOCK_INSECURE,
STOCK_LOCK_SECURE,
STOCK_LOCK_BROKEN,
- STOCK_LEAVE_FULLSCREEN
};
static const GtkStockItem items[] =
diff --git a/lib/ephy-stock-icons.h b/lib/ephy-stock-icons.h
index 4ff7d1862..9fcdd9911 100644
--- a/lib/ephy-stock-icons.h
+++ b/lib/ephy-stock-icons.h
@@ -33,7 +33,6 @@ G_BEGIN_DECLS
#define EPHY_STOCK_DOWNLOAD "epiphany-download"
#define STOCK_NEW_TAB "stock_new-tab"
-#define STOCK_FULLSCREEN "stock_fullscreen"
#define STOCK_VIEW_SOURCE "stock_view-html-source"
#define STOCK_SEND_MAIL "stock_mail-send"
#define STOCK_ADD_BOOKMARK "stock_add-bookmark"
@@ -41,7 +40,6 @@ G_BEGIN_DECLS
#define STOCK_LOCK_INSECURE "stock_lock-open"
#define STOCK_LOCK_SECURE "stock_lock"
#define STOCK_LOCK_BROKEN "stock_lock-broken"
-#define STOCK_LEAVE_FULLSCREEN "stock_leave-fullscreen"
void ephy_stock_icons_init (void);
diff --git a/src/ephy-fullscreen-popup.c b/src/ephy-fullscreen-popup.c
index f0f8187c4..aa3608d1c 100644
--- a/src/ephy-fullscreen-popup.c
+++ b/src/ephy-fullscreen-popup.c
@@ -23,7 +23,6 @@
#include "ephy-fullscreen-popup.h"
#include "ephy-spinner.h"
-#include "ephy-stock-icons.h"
#include "ephy-debug.h"
#include <glib/gi18n.h>
@@ -276,7 +275,7 @@ ephy_fullscreen_popup_constructor (GType type,
/* exit button */
priv->button = gtk_button_new_with_label (_("Leave Fullscreen"));
- icon = gtk_image_new_from_stock (STOCK_LEAVE_FULLSCREEN, GTK_ICON_SIZE_BUTTON);
+ icon = gtk_image_new_from_stock (GTK_STOCK_LEAVE_FULLSCREEN, GTK_ICON_SIZE_BUTTON);
gtk_button_set_image (GTK_BUTTON (priv->button), icon);
/* don't show the image! see bug #307818 */
g_signal_connect (priv->button, "clicked",
diff --git a/src/ephy-toolbar.c b/src/ephy-toolbar.c
index 0d2ef6bbc..3b40c0b9c 100755
--- a/src/ephy-toolbar.c
+++ b/src/ephy-toolbar.c
@@ -570,7 +570,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 (STOCK_LEAVE_FULLSCREEN);
+ priv->exit_button = gtk_tool_button_new_from_stock (GTK_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",
diff --git a/src/ephy-window.c b/src/ephy-window.c
index ceaaa8719..553928d42 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -294,7 +294,7 @@ static const GtkToggleActionEntry ephy_menu_toggle_entries [] =
{ "ViewStatusbar", NULL, N_("St_atusbar"), NULL,
N_("Show or hide statusbar"),
G_CALLBACK (ephy_window_view_statusbar_cb), TRUE },
- { "ViewFullscreen", STOCK_FULLSCREEN, N_("_Fullscreen"), "F11",
+ { "ViewFullscreen", GTK_STOCK_FULLSCREEN, N_("_Fullscreen"), "F11",
N_("Browse at full screen"),
G_CALLBACK (window_cmd_view_fullscreen), FALSE },
{ "ViewPopupWindows", EPHY_STOCK_POPUPS, N_("Popup _Windows"), NULL,