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/window-commands.c | |
parent | e896b194fbff39b480c571483c7d549865f38960 (diff) | |
download | gsoc2013-epiphany-7aa9ee599f7a1379b045ad020fc4c4ed94ece79e.tar gsoc2013-epiphany-7aa9ee599f7a1379b045ad020fc4c4ed94ece79e.tar.gz gsoc2013-epiphany-7aa9ee599f7a1379b045ad020fc4c4ed94ece79e.tar.bz2 gsoc2013-epiphany-7aa9ee599f7a1379b045ad020fc4c4ed94ece79e.tar.lz gsoc2013-epiphany-7aa9ee599f7a1379b045ad020fc4c4ed94ece79e.tar.xz 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/window-commands.c')
-rw-r--r-- | src/window-commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window-commands.c b/src/window-commands.c index c94035682..e4c799897 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -895,7 +895,7 @@ void window_cmd_help_contents (GtkAction *action, EphyWindow *window) { - ephy_gui_help (GTK_WINDOW (window), "epiphany", NULL); + ephy_gui_help (GTK_WIDGET (window), NULL); } #define ABOUT_GROUP "About" |