diff options
author | Diego Escalante Urrelo <diegoe@gnome.org> | 2009-12-18 08:20:35 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@gnome.org> | 2009-12-19 05:36:12 +0800 |
commit | 7aa9ee599f7a1379b045ad020fc4c4ed94ece79e (patch) | |
tree | a0b1b74024dd0fa8f6de4455eaeeadd0b2e83ae7 /src/bookmarks | |
parent | e896b194fbff39b480c571483c7d549865f38960 (diff) | |
download | gsoc2013-epiphany-7aa9ee599f7a1379b045ad020fc4c4ed94ece79e.tar.gz gsoc2013-epiphany-7aa9ee599f7a1379b045ad020fc4c4ed94ece79e.tar.zst gsoc2013-epiphany-7aa9ee599f7a1379b045ad020fc4c4ed94ece79e.zip |
ephy_gui_help: use gtk_show_uri to open help
We were doing some ugly path searching for this. The correct method is to use
gtk_show_uri.
Bug #604024
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmark-properties.c | 3 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/src/bookmarks/ephy-bookmark-properties.c b/src/bookmarks/ephy-bookmark-properties.c index ed8f9b2cd..e08e2add0 100644 --- a/src/bookmarks/ephy-bookmark-properties.c +++ b/src/bookmarks/ephy-bookmark-properties.c @@ -383,8 +383,7 @@ bookmark_properties_response_cb (GtkDialog *dialog, switch (response_id) { case GTK_RESPONSE_HELP: - ephy_gui_help (GTK_WINDOW (dialog), - "epiphany", + ephy_gui_help (GTK_WIDGET (dialog), "to-edit-bookmark-properties"); return; case GTK_RESPONSE_ACCEPT: diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index ea5c37f7a..db892ba68 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -1114,9 +1114,7 @@ static void cmd_help_contents (GtkAction *action, EphyBookmarksEditor *editor) { - ephy_gui_help (GTK_WINDOW (editor), - "epiphany", - "ephy-managing-bookmarks"); + ephy_gui_help (GTK_WINDOW (editor), "ephy-managing-bookmarks"); } static void |