diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | embed/mozilla/EphyProtocolHandler.cpp | 2 | ||||
-rw-r--r-- | embed/mozilla/EphyProtocolHandler.h | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,12 @@ 2005-05-26 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/EphyProtocolHandler.cpp: + * embed/mozilla/EphyProtocolHandler.h: + + Don't use (void). + +2005-05-26 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/ContentHandler.cpp: * embed/mozilla/EphyProtocolHandler.cpp: * embed/mozilla/EphyProtocolHandler.h: diff --git a/embed/mozilla/EphyProtocolHandler.cpp b/embed/mozilla/EphyProtocolHandler.cpp index 334e261b4..5cb507865 100644 --- a/embed/mozilla/EphyProtocolHandler.cpp +++ b/embed/mozilla/EphyProtocolHandler.cpp @@ -52,7 +52,7 @@ static NS_DEFINE_CID(kSimpleURICID, NS_SIMPLEURI_CID); static NS_DEFINE_CID(kInputStreamChannelCID, NS_INPUTSTREAMCHANNEL_CID); -EphyProtocolHandler::EphyProtocolHandler (void) +EphyProtocolHandler::EphyProtocolHandler() { LOG ("EphyProtocolHandler ctor [%p]\n", this); } diff --git a/embed/mozilla/EphyProtocolHandler.h b/embed/mozilla/EphyProtocolHandler.h index 332a20a5c..2fad9ac7b 100644 --- a/embed/mozilla/EphyProtocolHandler.h +++ b/embed/mozilla/EphyProtocolHandler.h @@ -48,7 +48,7 @@ class EphyProtocolHandler : public nsIProtocolHandler, NS_DECL_ISUPPORTS NS_DECL_NSIPROTOCOLHANDLER - EphyProtocolHandler (void); + EphyProtocolHandler(); virtual ~EphyProtocolHandler(); private: |