aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed-persist.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-03-16 02:27:14 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-03-16 02:27:14 +0800
commita49c85f4678d4b9edb19725b6c2168dc706d5b54 (patch)
tree954a5912f58deda747cce720e533349612def829 /embed/ephy-embed-persist.c
parente460bd19de1c3856b1f066a84fc985014f07004f (diff)
downloadgsoc2013-epiphany-a49c85f4678d4b9edb19725b6c2168dc706d5b54.tar
gsoc2013-epiphany-a49c85f4678d4b9edb19725b6c2168dc706d5b54.tar.gz
gsoc2013-epiphany-a49c85f4678d4b9edb19725b6c2168dc706d5b54.tar.bz2
gsoc2013-epiphany-a49c85f4678d4b9edb19725b6c2168dc706d5b54.tar.lz
gsoc2013-epiphany-a49c85f4678d4b9edb19725b6c2168dc706d5b54.tar.xz
gsoc2013-epiphany-a49c85f4678d4b9edb19725b6c2168dc706d5b54.tar.zst
gsoc2013-epiphany-a49c85f4678d4b9edb19725b6c2168dc706d5b54.zip
Keep a ref on EmbedPersist while save is in progress.
2003-03-15 Marco Pesenti Gritti <marco@it.gnome.org> * embed/ephy-embed-persist.c: (ephy_embed_persist_init), (ephy_embed_persist_finalize): * embed/mozilla/ProgressListener.cpp: * embed/mozilla/mozilla-embed-persist.cpp: * embed/mozilla/mozilla-embed-persist.h: Keep a ref on EmbedPersist while save is in progress.
Diffstat (limited to 'embed/ephy-embed-persist.c')
-rw-r--r--embed/ephy-embed-persist.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/embed/ephy-embed-persist.c b/embed/ephy-embed-persist.c
index 33b5b7eb7..08dfd025b 100644
--- a/embed/ephy-embed-persist.c
+++ b/embed/ephy-embed-persist.c
@@ -19,7 +19,7 @@
#include <config.h>
#include "ephy-embed-persist.h"
-
+#include "ephy-debug.h"
#include "mozilla-embed.h"
#include "mozilla-embed-persist.h"
@@ -281,6 +281,8 @@ ephy_embed_persist_init (EphyEmbedPersist *persist)
persist->priv->src = NULL;
persist->priv->dir = NULL;
persist->priv->handler = NULL;
+
+ LOG ("Embed persist init")
}
static void
@@ -306,6 +308,8 @@ ephy_embed_persist_finalize (GObject *object)
g_free (persist->priv);
+ LOG ("Embed persist finalize")
+
G_OBJECT_CLASS (parent_class)->finalize (object);
}