diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-05-26 06:12:08 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-05-26 06:12:08 +0800 |
commit | b2ad5e47dac73c5f3d98dcfb3ae14c817201681a (patch) | |
tree | 2795cb9d627f10bde889a4544c70b7a1c8151804 /embed | |
parent | c951555722d4933277a1d468c6508f5ad34711b1 (diff) | |
download | gsoc2013-epiphany-b2ad5e47dac73c5f3d98dcfb3ae14c817201681a.tar gsoc2013-epiphany-b2ad5e47dac73c5f3d98dcfb3ae14c817201681a.tar.gz gsoc2013-epiphany-b2ad5e47dac73c5f3d98dcfb3ae14c817201681a.tar.bz2 gsoc2013-epiphany-b2ad5e47dac73c5f3d98dcfb3ae14c817201681a.tar.lz gsoc2013-epiphany-b2ad5e47dac73c5f3d98dcfb3ae14c817201681a.tar.xz gsoc2013-epiphany-b2ad5e47dac73c5f3d98dcfb3ae14c817201681a.tar.zst gsoc2013-epiphany-b2ad5e47dac73c5f3d98dcfb3ae14c817201681a.zip |
Don't use (void).
2005-05-26 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphyProtocolHandler.cpp:
* embed/mozilla/EphyProtocolHandler.h:
Don't use (void).
Diffstat (limited to 'embed')
-rw-r--r-- | embed/mozilla/EphyProtocolHandler.cpp | 2 | ||||
-rw-r--r-- | embed/mozilla/EphyProtocolHandler.h | 2 |
2 files changed, 2 insertions, 2 deletions
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: |