aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2007-11-17 02:56:49 +0800
committerXan Lopez <xan@src.gnome.org>2007-11-17 02:56:49 +0800
commitbb91baf251c755a40fc3a167741797680fba5efb (patch)
tree2bbc382a5bb9fbcf8015a3d718ee316ae987190d /src
parent3a501b5211ea21b19b93a1574c916c5b3c375d3b (diff)
downloadgsoc2013-epiphany-bb91baf251c755a40fc3a167741797680fba5efb.tar
gsoc2013-epiphany-bb91baf251c755a40fc3a167741797680fba5efb.tar.gz
gsoc2013-epiphany-bb91baf251c755a40fc3a167741797680fba5efb.tar.bz2
gsoc2013-epiphany-bb91baf251c755a40fc3a167741797680fba5efb.tar.lz
gsoc2013-epiphany-bb91baf251c755a40fc3a167741797680fba5efb.tar.xz
gsoc2013-epiphany-bb91baf251c755a40fc3a167741797680fba5efb.tar.zst
gsoc2013-epiphany-bb91baf251c755a40fc3a167741797680fba5efb.zip
Do not change session saving format ;)
svn path=/trunk/; revision=7705
Diffstat (limited to 'src')
-rw-r--r--src/ephy-session.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-session.c b/src/ephy-session.c
index 6eca2d2ce..9ad5c271c 100644
--- a/src/ephy-session.c
+++ b/src/ephy-session.c
@@ -1103,7 +1103,7 @@ write_active_tab (xmlTextWriterPtr writer,
current = gtk_notebook_get_current_page (GTK_NOTEBOOK (notebook));
- ret = xmlTextWriterWriteFormatAttribute (writer, (const xmlChar *) "active-child", "%d", current);
+ ret = xmlTextWriterWriteFormatAttribute (writer, (const xmlChar *) "active-tab", "%d", current);
return ret;
}
@@ -1487,7 +1487,7 @@ ephy_session_load (EphySession *session,
parse_embed (child->children, window, session);
/* Set focus to something sane */
- tmp = xmlGetProp (child, (xmlChar *) "active-child");
+ tmp = xmlGetProp (child, (xmlChar *) "active-tab");
if (tmp != NULL)
{
gboolean success;