diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-10-26 04:01:42 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-10-26 04:01:42 +0800 |
commit | f81e06a9dd460b7a65bfc1476cd9dfa476f30ce6 (patch) | |
tree | e7cc14000c166ab88e8e9c68d41a3d135d4ce13b /src | |
parent | 01b8291ec0dbdb52400a21cda7d8785b8fb6da4e (diff) | |
download | gsoc2013-epiphany-f81e06a9dd460b7a65bfc1476cd9dfa476f30ce6.tar gsoc2013-epiphany-f81e06a9dd460b7a65bfc1476cd9dfa476f30ce6.tar.gz gsoc2013-epiphany-f81e06a9dd460b7a65bfc1476cd9dfa476f30ce6.tar.bz2 gsoc2013-epiphany-f81e06a9dd460b7a65bfc1476cd9dfa476f30ce6.tar.lz gsoc2013-epiphany-f81e06a9dd460b7a65bfc1476cd9dfa476f30ce6.tar.xz gsoc2013-epiphany-f81e06a9dd460b7a65bfc1476cd9dfa476f30ce6.tar.zst gsoc2013-epiphany-f81e06a9dd460b7a65bfc1476cd9dfa476f30ce6.zip |
Fix more issues left with the refactoring.
Fix double free in link_message property.
Fix title by connecting to embed and not to tab in EphyWindow.
Fix progress by passing the correct parameter to update_embed_from_net_state.
Also use the link_message parsing function in utils.
svn path=/trunk/; revision=7566
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index a3d4f9489..2bef6530b 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -2216,7 +2216,7 @@ ephy_window_set_active_tab (EphyWindow *window, EphyTab *new_tab) G_CALLBACK (sync_tab_popups_allowed), window, 0); - g_signal_connect_object (new_tab, "notify::title", + g_signal_connect_object (embed, "notify::title", G_CALLBACK (sync_tab_title), window, 0); g_signal_connect_object (embed, "notify::address", |