From 7aa9ee599f7a1379b045ad020fc4c4ed94ece79e Mon Sep 17 00:00:00 2001
From: Diego Escalante Urrelo <diegoe@gnome.org>
Date: Thu, 17 Dec 2009 19:20:35 -0500
Subject: 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
---
 src/ephy-toolbar-editor.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src/ephy-toolbar-editor.c')

diff --git a/src/ephy-toolbar-editor.c b/src/ephy-toolbar-editor.c
index 8400a4d0c..a583ede62 100644
--- a/src/ephy-toolbar-editor.c
+++ b/src/ephy-toolbar-editor.c
@@ -134,7 +134,7 @@ ephy_toolbar_editor_response (GtkDialog *dialog,
 	}
 	else if (response == GTK_RESPONSE_HELP)
 	{
-		ephy_gui_help (GTK_WINDOW (dialog), "epiphany", "to-edit-toolbars");
+		ephy_gui_help (GTK_WIDGET (dialog), "to-edit-toolbars");
 		return;
 	}
 
-- 
cgit