diff options
author | Christian Persch <chpe@src.gnome.org> | 2007-10-28 21:52:44 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-10-28 21:52:44 +0800 |
commit | c1d8eb89fdfdfbd2138083ee68fcfa6d3b736521 (patch) | |
tree | 4ffda8772d7222ce7a85abadcf2772a648349a40 /src | |
parent | 409732e8cce09d628fc9905866468992094086f4 (diff) | |
download | gsoc2013-epiphany-c1d8eb89fdfdfbd2138083ee68fcfa6d3b736521.tar gsoc2013-epiphany-c1d8eb89fdfdfbd2138083ee68fcfa6d3b736521.tar.gz gsoc2013-epiphany-c1d8eb89fdfdfbd2138083ee68fcfa6d3b736521.tar.bz2 gsoc2013-epiphany-c1d8eb89fdfdfbd2138083ee68fcfa6d3b736521.tar.lz gsoc2013-epiphany-c1d8eb89fdfdfbd2138083ee68fcfa6d3b736521.tar.xz gsoc2013-epiphany-c1d8eb89fdfdfbd2138083ee68fcfa6d3b736521.tar.zst gsoc2013-epiphany-c1d8eb89fdfdfbd2138083ee68fcfa6d3b736521.zip |
Remove EPhyTab.
svn path=/trunk/; revision=7591
Diffstat (limited to 'src')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 1e7b3f4a2..db24028ad 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -353,15 +353,15 @@ cmd_open_bookmarks_in_tabs (GtkAction *action, for (l = selection; l; l = l->next) { EphyNode *node = l->data; - EphyTab *new_tab; + EphyEmbed *new_embed; const char *location; location = ephy_node_get_property_string (node, EPHY_NODE_BMK_PROP_LOCATION); - new_tab = ephy_shell_new_tab (ephy_shell, window, NULL, location, - EPHY_NEW_TAB_OPEN_PAGE | - EPHY_NEW_TAB_IN_EXISTING_WINDOW); + new_embed = ephy_shell_new_tab (ephy_shell, window, NULL, location, + EPHY_NEW_TAB_OPEN_PAGE | + EPHY_NEW_TAB_IN_EXISTING_WINDOW); /* if there was no target window, a new one was opened. Get it * from the new tab so we open the remaining links in the * same window. See bug 138343. @@ -369,7 +369,7 @@ cmd_open_bookmarks_in_tabs (GtkAction *action, if (window == NULL) { window = EPHY_WINDOW - (gtk_widget_get_toplevel (GTK_WIDGET (new_tab))); + (gtk_widget_get_toplevel (GTK_WIDGET (new_embed))); } } |