aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2007-10-28 21:52:44 +0800
committerChristian Persch <chpe@src.gnome.org>2007-10-28 21:52:44 +0800
commitc1d8eb89fdfdfbd2138083ee68fcfa6d3b736521 (patch)
tree4ffda8772d7222ce7a85abadcf2772a648349a40 /src
parent409732e8cce09d628fc9905866468992094086f4 (diff)
downloadgsoc2013-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.c10
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)));
}
}