aboutsummaryrefslogtreecommitdiffstats
path: root/src/session.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-06-21 00:52:49 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-06-21 00:52:49 +0800
commit5d5fe667968ae5e9b4a4fe97ba36a06a7616d718 (patch)
treef0a28b1067282fdc4d7aed8aabc1a2ad39cd2bf2 /src/session.c
parenta838f6d5ab82bac98a25fb3ce9cb2c0cd575146c (diff)
downloadgsoc2013-epiphany-5d5fe667968ae5e9b4a4fe97ba36a06a7616d718.tar
gsoc2013-epiphany-5d5fe667968ae5e9b4a4fe97ba36a06a7616d718.tar.gz
gsoc2013-epiphany-5d5fe667968ae5e9b4a4fe97ba36a06a7616d718.tar.bz2
gsoc2013-epiphany-5d5fe667968ae5e9b4a4fe97ba36a06a7616d718.tar.lz
gsoc2013-epiphany-5d5fe667968ae5e9b4a4fe97ba36a06a7616d718.tar.xz
gsoc2013-epiphany-5d5fe667968ae5e9b4a4fe97ba36a06a7616d718.tar.zst
gsoc2013-epiphany-5d5fe667968ae5e9b4a4fe97ba36a06a7616d718.zip
Set a title on NET_START (nicified url).
2003-06-20 Marco Pesenti Gritti <marco@it.gnome.org> * src/ephy-tab.c: (ephy_tab_net_state_cb), (ephy_tab_set_title): Set a title on NET_START (nicified url). * src/prefs-dialog.c: (prefs_homepage_current_button_clicked_cb): * src/session.c: (save_tab): * src/window-commands.c: (window_cmd_file_send_to), (window_cmd_file_bookmark_page): Use embed_get_location when we want the real location, tab can contain user changes.
Diffstat (limited to 'src/session.c')
-rw-r--r--src/session.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/session.c b/src/session.c
index 7b99447a1..387a96edd 100644
--- a/src/session.c
+++ b/src/session.c
@@ -445,9 +445,10 @@ save_tab (EphyWindow *window,
xmlNodePtr window_node)
{
EmbedChromeMask chrome;
- const char *location;
+ char *location;
const char *title;
xmlNodePtr embed_node;
+ EphyEmbed *embed;
chrome = ephy_window_get_chrome (window);
@@ -463,8 +464,10 @@ save_tab (EphyWindow *window,
xmlSetProp (embed_node, "title", title);
/* otherwise, use the actual location. */
- location = ephy_tab_get_location (tab);
+ embed = ephy_tab_get_embed (tab);
+ ephy_embed_get_location (embed, TRUE, &location);
xmlSetProp (embed_node, "url", location);
+ g_free (location);
/* insert node into the tree */
xmlAddChild (window_node, embed_node);