aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--src/bookmarks/ephy-bookmarks-editor.c2
-rw-r--r--src/ephy-history-window.c2
-rw-r--r--src/ephy-window.c2
4 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 143da6340..db4ae285e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
2007-07-01 Jaap Haitsma <jaap@haitsma.org>
+
+ * src/ephy-history-window.c, src/bookmarks/ephy-bookmarks-editor.c,
+ src/ephy-window.c: Use GTK_STOCK_ABOUT icon i.s.o GNOME_STOCK_ABOUT
+ Fixes bug #452769
+
+2007-07-01 Jaap Haitsma <jaap@haitsma.org>
Changelog entry from the previous commit. I accidently changed the
wrong Changelog file
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c
index 9854caec5..c853afc83 100644
--- a/src/bookmarks/ephy-bookmarks-editor.c
+++ b/src/bookmarks/ephy-bookmarks-editor.c
@@ -230,7 +230,7 @@ static const GtkActionEntry ephy_bookmark_popup_entries [] = {
{ "HelpContents", GTK_STOCK_HELP, N_("_Contents"), "F1",
N_("Display bookmarks help"),
G_CALLBACK (cmd_help_contents) },
- { "HelpAbout", GNOME_STOCK_ABOUT, N_("_About"), NULL,
+ { "HelpAbout", GTK_STOCK_ABOUT, N_("_About"), NULL,
N_("Display credits for the web browser creators"),
G_CALLBACK (window_cmd_help_about) },
};
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c
index be227ca53..7df73628f 100644
--- a/src/ephy-history-window.c
+++ b/src/ephy-history-window.c
@@ -206,7 +206,7 @@ static const GtkActionEntry ephy_history_ui_entries [] = {
{ "HelpContents", GTK_STOCK_HELP, N_("_Contents"), "F1",
N_("Display history help"),
G_CALLBACK (cmd_help_contents) },
- { "HelpAbout", GNOME_STOCK_ABOUT, N_("_About"), NULL,
+ { "HelpAbout", GTK_STOCK_ABOUT, N_("_About"), NULL,
N_("Display credits for the web browser creators"),
G_CALLBACK (window_cmd_help_about) },
};
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 2675937d3..162a4dccc 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -262,7 +262,7 @@ static const GtkActionEntry ephy_menu_entries [] = {
{"HelpContents", GTK_STOCK_HELP, N_("_Contents"), "F1",
N_("Display web browser help"),
G_CALLBACK (window_cmd_help_contents) },
- { "HelpAbout", GNOME_STOCK_ABOUT, N_("_About"), NULL,
+ { "HelpAbout", GTK_STOCK_ABOUT, N_("_About"), NULL,
N_("Display credits for the web browser creators"),
G_CALLBACK (window_cmd_help_about) },
};