aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2003-11-21 19:00:24 +0800
committerMarco Pesenti Gritti <marco@src.gnome.org>2003-11-21 19:00:24 +0800
commitc371819f2c4fef7c069b69c3f4037a3e5276450e (patch)
tree78988a3e1c09a09a94ebbc829d0b0b13f39a5419 /src/ephy-window.c
parentf3b45df76a7b9147372d6815d2d3edca73270fb3 (diff)
downloadgsoc2013-epiphany-c371819f2c4fef7c069b69c3f4037a3e5276450e.tar
gsoc2013-epiphany-c371819f2c4fef7c069b69c3f4037a3e5276450e.tar.gz
gsoc2013-epiphany-c371819f2c4fef7c069b69c3f4037a3e5276450e.tar.bz2
gsoc2013-epiphany-c371819f2c4fef7c069b69c3f4037a3e5276450e.tar.lz
gsoc2013-epiphany-c371819f2c4fef7c069b69c3f4037a3e5276450e.tar.xz
gsoc2013-epiphany-c371819f2c4fef7c069b69c3f4037a3e5276450e.tar.zst
gsoc2013-epiphany-c371819f2c4fef7c069b69c3f4037a3e5276450e.zip
Pass a source based on filename instead of pixbuf for our own icon set, so
2003-11-21 Marco Pesenti Gritti <marco@gnome.org> * lib/ephy-stock-icons.c: (ephy_stock_icons_init): * lib/ephy-stock-icons.h: Pass a source based on filename instead of pixbuf for our own icon set, so that they are created only when necessary. Add code to insert icon theme icons in our icon set and use icon theme icons when possible. * src/ephy-window.c: Update icons id.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r--src/ephy-window.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 5e38f5f6f..3afd3b597 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -87,7 +87,7 @@ static GtkActionEntry ephy_menu_entries [] = {
{ "FileNewWindow", GTK_STOCK_NEW, N_("_New Window"), "<control>N",
N_("Open a new window"),
G_CALLBACK (window_cmd_file_new_window) },
- { "FileNewTab", EPHY_STOCK_NEW_TAB, N_("New _Tab"), "<control>T",
+ { "FileNewTab", STOCK_NEW_TAB, N_("New _Tab"), "<control>T",
N_("Open a new tab"),
G_CALLBACK (window_cmd_file_new_tab) },
{ "FileOpen", GTK_STOCK_OPEN, N_("_Open..."), "<control>O",
@@ -99,7 +99,7 @@ static GtkActionEntry ephy_menu_entries [] = {
{ "FilePrint", GTK_STOCK_PRINT, N_("_Print..."), "<control>P",
N_("Print the current page"),
G_CALLBACK (window_cmd_file_print) },
- { "FileSendTo", EPHY_STOCK_SEND_LINK, N_("S_end To..."), NULL,
+ { "FileSendTo", STOCK_SEND_MAIL, N_("S_end To..."), NULL,
N_("Send a link of the current page"),
G_CALLBACK (window_cmd_file_send_to) },
{ "FileCloseWindow", GTK_STOCK_CLOSE, N_("_Close"), "<control>W",
@@ -163,7 +163,7 @@ static GtkActionEntry ephy_menu_entries [] = {
{ "ViewEncoding", NULL, N_("Text _Encoding"), NULL,
N_("Change the text encoding"),
NULL },
- { "ViewPageSource", EPHY_STOCK_VIEWSOURCE, N_("_Page Source"), "<control>U",
+ { "ViewPageSource", STOCK_VIEW_SOURCE, N_("_Page Source"), "<control>U",
N_("View the source code of the page"),
G_CALLBACK (window_cmd_view_page_source) },
@@ -234,7 +234,7 @@ static GtkToggleActionEntry ephy_menu_toggle_entries [] =
{ "ViewStatusbar", NULL, N_("St_atusbar"), NULL,
N_("Show or hide statusbar"),
G_CALLBACK (window_cmd_view_statusbar), TRUE },
- { "ViewFullscreen", EPHY_STOCK_FULLSCREEN, N_("_Fullscreen"), "F11",
+ { "ViewFullscreen", STOCK_FULLSCREEN, N_("_Fullscreen"), "F11",
N_("Browse at full screen"),
G_CALLBACK (window_cmd_view_fullscreen), FALSE}
};