diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-11-17 02:53:41 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-11-17 02:53:41 +0800 |
commit | bbc813a37feca5e67d2a69e6aba1cd39458660a6 (patch) | |
tree | ce01afb782f13c99b3185872fa6620fc2809bfca /src/ephy-encoding-dialog.c | |
parent | 7a04f9035bafcbaab6d01fe0cb65b0fa7bc7b6ad (diff) | |
download | gsoc2013-epiphany-bbc813a37feca5e67d2a69e6aba1cd39458660a6.tar gsoc2013-epiphany-bbc813a37feca5e67d2a69e6aba1cd39458660a6.tar.gz gsoc2013-epiphany-bbc813a37feca5e67d2a69e6aba1cd39458660a6.tar.bz2 gsoc2013-epiphany-bbc813a37feca5e67d2a69e6aba1cd39458660a6.tar.lz gsoc2013-epiphany-bbc813a37feca5e67d2a69e6aba1cd39458660a6.tar.xz gsoc2013-epiphany-bbc813a37feca5e67d2a69e6aba1cd39458660a6.tar.zst gsoc2013-epiphany-bbc813a37feca5e67d2a69e6aba1cd39458660a6.zip |
Move active-tab property to the embed-container interface.
Rename it to active-child and fix a bug in the set_property function in
EphyWindow, where the wrong function was being called for this property.
svn path=/trunk/; revision=7703
Diffstat (limited to 'src/ephy-encoding-dialog.c')
-rw-r--r-- | src/ephy-encoding-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-encoding-dialog.c b/src/ephy-encoding-dialog.c index 4fa23bdf8..d58a43fc7 100644 --- a/src/ephy-encoding-dialog.c +++ b/src/ephy-encoding-dialog.c @@ -217,7 +217,7 @@ sync_parent_window_cb (EphyEncodingDialog *dialog, GParamSpec *pspec, gpointer d dialog->priv->window = window; sync_active_tab (window, NULL, dialog); - g_signal_connect (G_OBJECT (window), "notify::active-tab", + g_signal_connect (G_OBJECT (window), "notify::active-child", G_CALLBACK (sync_active_tab), dialog); } |