diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-10-20 21:12:57 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-10-20 21:12:57 +0800 |
commit | 501c4357042c915188dc900849e2c595ad4edf8a (patch) | |
tree | 4e4f9c655d5a677242d20b2b139a3b7679b6a15c /src/ephy-toolbar.c | |
parent | 519f01f0b3d13bc1e6f0c02ba1a9b25983921aaa (diff) | |
download | gsoc2013-epiphany-501c4357042c915188dc900849e2c595ad4edf8a.tar.gz gsoc2013-epiphany-501c4357042c915188dc900849e2c595ad4edf8a.tar.zst gsoc2013-epiphany-501c4357042c915188dc900849e2c595ad4edf8a.zip |
Remove fullscreen and leave-fullscreen stock icons; they're available in
2005-10-20 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-stock-icons.c: (ephy_stock_icons_init):
* lib/ephy-stock-icons.h:
* src/ephy-fullscreen-popup.c: (ephy_fullscreen_popup_constructor):
* src/ephy-toolbar.c: (ephy_toolbar_constructor):
* src/ephy-window.c:
Remove fullscreen and leave-fullscreen stock icons; they're available
in gtk+ since 2.8.
Diffstat (limited to 'src/ephy-toolbar.c')
-rwxr-xr-x | src/ephy-toolbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
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", |