aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2004-06-24 16:58:52 +0800
committerMarco Pesenti Gritti <marco@src.gnome.org>2004-06-24 16:58:52 +0800
commit6fcf143b625f3423798bea58621a231446eac361 (patch)
tree725aa187c799702afe51600681188d3412d2d5d6 /src/ephy-window.c
parent24833bb6604df5e36c39bab539fdbea4b5b57fe5 (diff)
downloadgsoc2013-epiphany-6fcf143b625f3423798bea58621a231446eac361.tar
gsoc2013-epiphany-6fcf143b625f3423798bea58621a231446eac361.tar.gz
gsoc2013-epiphany-6fcf143b625f3423798bea58621a231446eac361.tar.bz2
gsoc2013-epiphany-6fcf143b625f3423798bea58621a231446eac361.tar.lz
gsoc2013-epiphany-6fcf143b625f3423798bea58621a231446eac361.tar.xz
gsoc2013-epiphany-6fcf143b625f3423798bea58621a231446eac361.tar.zst
gsoc2013-epiphany-6fcf143b625f3423798bea58621a231446eac361.zip
Implement open in tabs from toolbar topics
2004-06-24 Marco Pesenti Gritti <marco@gnome.org> * src/bookmarks/ephy-bookmarksbar.c: (open_in_tabs_cb), (go_location_cb), (ephy_bookmarksbar_action_request): * src/bookmarks/ephy-topic-action.c: (append_bookmarks_menu), (open_in_tabs_activate_cb), (build_bookmarks_menu), (build_topics_menu), (build_menu), (ephy_topic_action_set_topic_id), (ephy_topic_action_set_property), (ephy_topic_action_class_init): * src/bookmarks/ephy-topic-action.h: * src/ephy-window.c: (ephy_window_load_in_tabs): Implement open in tabs from toolbar topics
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r--src/ephy-window.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 9913a2170..098624988 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -2627,7 +2627,6 @@ ephy_window_load_in_tabs (EphyWindow *window, EphyTab *tab, GList *uri_list)
{
EphyEmbed *embed = NULL;
GList *l;
- gchar *url = NULL;
guint num = 0;
GnomeVFSURI *uri;
@@ -2640,6 +2639,8 @@ ephy_window_load_in_tabs (EphyWindow *window, EphyTab *tab, GList *uri_list)
l = uri_list;
while (l != NULL && num < INSANE_NUMBER_OF_URLS)
{
+ gchar *url = NULL;
+
uri = (GnomeVFSURI*) l->data;
url = gnome_vfs_uri_to_string (uri, GNOME_VFS_URI_HIDE_NONE);