diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/EphyBadCertRejector.h | 5 |
2 files changed, 8 insertions, 3 deletions
@@ -1,5 +1,11 @@ 2005-10-15 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/EphyBadCertRejector.h: + + Remove debug output. + +2005-10-15 Christian Persch <chpe@cvs.gnome.org> + * embed/ephy-embed-persist.h: Add EPHY_EMBED_PERSIST_NO_CERTDIALOGS flag. diff --git a/embed/mozilla/EphyBadCertRejector.h b/embed/mozilla/EphyBadCertRejector.h index b00963d8b..bb95e3f38 100644 --- a/embed/mozilla/EphyBadCertRejector.h +++ b/embed/mozilla/EphyBadCertRejector.h @@ -22,7 +22,6 @@ #define EPHY_BAD_CERT_DENIER_H #include <nsIBadCertListener.h> -#include <stdio.h> class EphyBadCertRejector : public nsIBadCertListener { @@ -30,8 +29,8 @@ class EphyBadCertRejector : public nsIBadCertListener NS_DECL_ISUPPORTS NS_DECL_NSIBADCERTLISTENER - EphyBadCertRejector () { printf ("BadCertRejector ctor [%p]\n", (void*) this); } - ~EphyBadCertRejector () { printf ("BadCertRejector dtor [%p]\n", (void*) this); } + EphyBadCertRejector () { } + ~EphyBadCertRejector () { } }; #endif |