diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-02-29 22:24:40 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-02-29 22:24:40 +0800 |
commit | cbbf7c86bcc83b0225dd37272d4c1740641a2980 (patch) | |
tree | 5b2916ace75056b43dc4731c273d8ccf864fdf74 /embed/mozilla/ContentHandler.cpp | |
parent | 29e6bdcbc9eda0694e67689eabc97070f0911437 (diff) | |
download | gsoc2013-epiphany-cbbf7c86bcc83b0225dd37272d4c1740641a2980.tar gsoc2013-epiphany-cbbf7c86bcc83b0225dd37272d4c1740641a2980.tar.gz gsoc2013-epiphany-cbbf7c86bcc83b0225dd37272d4c1740641a2980.tar.bz2 gsoc2013-epiphany-cbbf7c86bcc83b0225dd37272d4c1740641a2980.tar.lz gsoc2013-epiphany-cbbf7c86bcc83b0225dd37272d4c1740641a2980.tar.xz gsoc2013-epiphany-cbbf7c86bcc83b0225dd37272d4c1740641a2980.tar.zst gsoc2013-epiphany-cbbf7c86bcc83b0225dd37272d4c1740641a2980.zip |
Add debug output in ctors and dtors.
2004-02-29 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/ContentHandler.cpp:
* embed/mozilla/EphyHeaderSniffer.cpp:
* embed/mozilla/FilePicker.cpp:
* embed/mozilla/GtkNSSClientAuthDialogs.cpp:
* embed/mozilla/GtkNSSKeyPairDialogs.cpp:
* embed/mozilla/PrintingPromptService.cpp:
Add debug output in ctors and dtors.
Diffstat (limited to 'embed/mozilla/ContentHandler.cpp')
-rw-r--r-- | embed/mozilla/ContentHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/mozilla/ContentHandler.cpp b/embed/mozilla/ContentHandler.cpp index a92965638..88f7b5bad 100644 --- a/embed/mozilla/ContentHandler.cpp +++ b/embed/mozilla/ContentHandler.cpp @@ -59,12 +59,12 @@ NS_IMPL_ISUPPORTS1(GContentHandler, nsIHelperAppLauncherDialog) GContentHandler::GContentHandler() : mMimeType(nsnull) { - LOG ("GContentHandler ctor") + LOG ("GContentHandler ctor (%p)", this) } GContentHandler::~GContentHandler() { - LOG ("GContentHandler dtor") + LOG ("GContentHandler dtor (%p)", this) nsMemory::Free (mMimeType); } |