aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--embed/mozilla/EphyProtocolHandler.cpp2
-rw-r--r--embed/mozilla/EphyProtocolHandler.h2
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 95af28c88..de496de6b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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: