aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-shell.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-04-15 22:10:57 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-04-15 22:10:57 +0800
commitb97ce595da599035a5b3e38997eace8c2b416060 (patch)
treedb1b3f8fb8f512509b1961385f4fb9335d12acbb /src/ephy-shell.c
parentc608bb09921d9f654c7dc6fd3a81a370b2c85111 (diff)
downloadgsoc2013-epiphany-b97ce595da599035a5b3e38997eace8c2b416060.tar
gsoc2013-epiphany-b97ce595da599035a5b3e38997eace8c2b416060.tar.gz
gsoc2013-epiphany-b97ce595da599035a5b3e38997eace8c2b416060.tar.bz2
gsoc2013-epiphany-b97ce595da599035a5b3e38997eace8c2b416060.tar.lz
gsoc2013-epiphany-b97ce595da599035a5b3e38997eace8c2b416060.tar.xz
gsoc2013-epiphany-b97ce595da599035a5b3e38997eace8c2b416060.tar.zst
gsoc2013-epiphany-b97ce595da599035a5b3e38997eace8c2b416060.zip
Remove some api that was just silly wrappers. Return GtkTreeViewColumn on
2003-04-15 Marco Pesenti Gritti <marco@it.gnome.org> * TODO: * src/bookmarks/ephy-bookmarks-editor.c: (cmd_select_all), (ephy_bookmarks_editor_construct): * src/bookmarks/ephy-node-view.c: (ephy_node_view_add_column), (ephy_node_view_remove): * src/bookmarks/ephy-node-view.h: Remove some api that was just silly wrappers. Return GtkTreeViewColumn on add_column. * src/ephy-nautilus-view.c: (gnv_embed_new_window_cb): * src/ephy-shell.c: (ephy_shell_new_window_cb), (ephy_shell_new_tab): * src/ephy-tab.c: (ephy_tab_new_window_cb): * src/ephy-window.c: (ephy_window_add_tab): * src/ephy-window.h: * src/session.c: (parse_embed): Ever open tab as last on File->New tab and similars.
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r--src/ephy-shell.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c
index d76dc5d86..a4faae5d2 100644
--- a/src/ephy-shell.c
+++ b/src/ephy-shell.c
@@ -247,7 +247,7 @@ ephy_shell_new_window_cb (EphyEmbedShell *shell,
}
new_tab = ephy_tab_new ();
- ephy_window_add_tab (window, new_tab, FALSE);
+ ephy_window_add_tab (window, new_tab, TRUE, FALSE);
*new_embed = ephy_tab_get_embed (new_tab);
}
@@ -501,6 +501,7 @@ ephy_shell_new_tab (EphyShell *shell,
embed = ephy_tab_get_embed (tab);
gtk_widget_show (GTK_WIDGET(embed));
ephy_window_add_tab (window, tab,
+ url != NULL,
jump_to);
gtk_widget_show (GTK_WIDGET(window));