diff options
author | Christian Persch <chpe@src.gnome.org> | 2007-10-28 21:54:32 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-10-28 21:54:32 +0800 |
commit | 73d4e8e1b354b5c0f7ef799d2622f03473b1038e (patch) | |
tree | 8b34fa63d14557a16a8714af8750b98cebc2a2d5 /src | |
parent | 2fe15f38d304307a2de41248481648209c17637c (diff) | |
download | gsoc2013-epiphany-73d4e8e1b354b5c0f7ef799d2622f03473b1038e.tar gsoc2013-epiphany-73d4e8e1b354b5c0f7ef799d2622f03473b1038e.tar.gz gsoc2013-epiphany-73d4e8e1b354b5c0f7ef799d2622f03473b1038e.tar.bz2 gsoc2013-epiphany-73d4e8e1b354b5c0f7ef799d2622f03473b1038e.tar.lz gsoc2013-epiphany-73d4e8e1b354b5c0f7ef799d2622f03473b1038e.tar.xz gsoc2013-epiphany-73d4e8e1b354b5c0f7ef799d2622f03473b1038e.tar.zst gsoc2013-epiphany-73d4e8e1b354b5c0f7ef799d2622f03473b1038e.zip |
Remove Ephytab.
svn path=/trunk/; revision=7593
Diffstat (limited to 'src')
-rw-r--r-- | src/bookmarks/ephy-open-tabs-action.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-open-tabs-action.c b/src/bookmarks/ephy-open-tabs-action.c index 5a42f910c..3355b18e4 100644 --- a/src/bookmarks/ephy-open-tabs-action.c +++ b/src/bookmarks/ephy-open-tabs-action.c @@ -43,7 +43,7 @@ activate_cb (GtkAction *action, EphyLink *link; EphyNode *node; GPtrArray *children; - EphyTab *tab = 0; + EphyEmbed *embed = NULL; const char *url; guint i; @@ -56,8 +56,8 @@ activate_cb (GtkAction *action, node = g_ptr_array_index (children, i); url = ephy_node_get_property_string (node, EPHY_NODE_BMK_PROP_LOCATION); - tab = ephy_link_open (link, url, tab, - EPHY_LINK_NEW_TAB | ephy_link_flags_from_current_event ()); + embed = ephy_link_open (link, url, embed, + EPHY_LINK_NEW_TAB | ephy_link_flags_from_current_event ()); } } |