diff options
author | Diego Escalante Urrelo <diegoe@gnome.org> | 2007-06-08 09:53:08 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-06-08 09:53:08 +0800 |
commit | 3f9aed81356fe0b69b77675b12195d5e8c9572ff (patch) | |
tree | f752204ddb0840797da45eb5354f2700ba406189 /src | |
parent | 2927156b3956b2d5f7b8057fa9ebbcdd9a34745b (diff) | |
download | gsoc2013-epiphany-3f9aed81356fe0b69b77675b12195d5e8c9572ff.tar gsoc2013-epiphany-3f9aed81356fe0b69b77675b12195d5e8c9572ff.tar.gz gsoc2013-epiphany-3f9aed81356fe0b69b77675b12195d5e8c9572ff.tar.bz2 gsoc2013-epiphany-3f9aed81356fe0b69b77675b12195d5e8c9572ff.tar.lz gsoc2013-epiphany-3f9aed81356fe0b69b77675b12195d5e8c9572ff.tar.xz gsoc2013-epiphany-3f9aed81356fe0b69b77675b12195d5e8c9572ff.tar.zst gsoc2013-epiphany-3f9aed81356fe0b69b77675b12195d5e8c9572ff.zip |
Adds SelectAll stock icon.
2007-06-07 Diego Escalante Urrelo <diegoe@gnome.org>
* src/ephy-history-window.c:
* src/bookmarks/ephy-bookmarks-editor.c:
Adds SelectAll stock icon.
svn path=/trunk/; revision=7077
Diffstat (limited to 'src')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 2 | ||||
-rw-r--r-- | src/ephy-history-window.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 7eb86e24c..9854caec5 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -222,7 +222,7 @@ static const GtkActionEntry ephy_bookmark_popup_entries [] = { { "Delete", GTK_STOCK_DELETE, N_("_Delete"), "<control>T", N_("Delete the selected bookmark or topic"), G_CALLBACK (cmd_delete) }, - { "SelectAll", NULL, N_("Select _All"), "<control>A", + { "SelectAll", GTK_STOCK_SELECT_ALL, N_("Select _All"), "<control>A", N_("Select all bookmarks or text"), G_CALLBACK (cmd_select_all) }, diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index 9f7d955b1..be227ca53 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -195,7 +195,7 @@ static const GtkActionEntry ephy_history_ui_entries [] = { { "Delete", GTK_STOCK_DELETE, N_("_Delete"), "<control>T", N_("Delete the selected history link"), G_CALLBACK (cmd_delete) }, - { "SelectAll", NULL, N_("Select _All"), "<control>A", + { "SelectAll", GTK_STOCK_SELECT_ALL, N_("Select _All"), "<control>A", N_("Select all history links or text"), G_CALLBACK (cmd_select_all) }, { "Clear", GTK_STOCK_CLEAR, N_("Clear _History"), NULL, |