diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-03-16 02:27:14 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-03-16 02:27:14 +0800 |
commit | a49c85f4678d4b9edb19725b6c2168dc706d5b54 (patch) | |
tree | 954a5912f58deda747cce720e533349612def829 /embed/ephy-embed-persist.c | |
parent | e460bd19de1c3856b1f066a84fc985014f07004f (diff) | |
download | gsoc2013-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.c | 6 |
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); } |