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 /lib/ephy-gui.h | |
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 'lib/ephy-gui.h')
-rw-r--r-- | lib/ephy-gui.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/ephy-gui.h b/lib/ephy-gui.h index 301f05412..b32fd7f20 100644 --- a/lib/ephy-gui.h +++ b/lib/ephy-gui.h @@ -64,9 +64,8 @@ gboolean ephy_gui_is_middle_click (void); gboolean ephy_gui_check_location_writable (GtkWidget *parent, const char *filename); -void ephy_gui_help (GtkWindow *parent, - const char *file_name, - const char *link_id); +void ephy_gui_help (GtkWidget *parent, + const char *section); void ephy_gui_window_update_user_time (GtkWidget *window, guint32 user_time); |