aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--src/bookmarks/ephy-bookmarks-editor.c2
-rw-r--r--src/ephy-history-window.c2
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d1f28a783..4c9fb25bf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-06-07 Diego Escalante Urrelo <diegoe@gnome.org>
+
+ * src/ephy-history-window.c:
+ * src/bookmarks/ephy-bookmarks-editor.c:
+
+ Adds SelectAll stock icon.
+
2007-06-05 Diego Escalante Urrelo <diegoe@gnome.org>
* src/ephy-history-window.c
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,