]> git.saurik.com Git - wxWidgets.git/commitdiff
Suppress warnings
authorRobert Roebling <robert@roebling.de>
Mon, 7 Sep 1998 18:04:27 +0000 (18:04 +0000)
committerRobert Roebling <robert@roebling.de>
Mon, 7 Sep 1998 18:04:27 +0000 (18:04 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@708 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/sckstrm.h
include/wx/stream.h
src/common/sckipc.cpp
src/common/socket.cpp

index 3d55f1b85e2ca9f4ece372d06b744a56cdc9348b..86782eddf2e8d80ea4543fa9c49be548a3b7469d 100644 (file)
@@ -25,8 +25,10 @@ class WXDLLEXPORT wxSocketOutputStream : public wxOutputStream
   virtual ~wxSocketOutputStream();
 
   wxOutputStream& Write(const void *buffer, size_t size);
-  off_t SeekO(off_t pos, wxSeekMode mode) { return -1; }
-  off_t TellO() { return -1; }
+  off_t SeekO( off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) ) 
+    { return -1; }
+  off_t TellO() 
+    { return -1; }
 
   bool Bad() { return m_o_socket->IsDisconnected(); }
   size_t LastWrite() { return m_o_socket->LastCount(); }
@@ -41,8 +43,10 @@ class WXDLLEXPORT wxSocketInputStream : public wxInputStream
   ~wxSocketInputStream();
 
   wxInputStream& Read(void *buffer, size_t size);
-  off_t SeekI(off_t pos, wxSeekMode mode) { return -1; }
-  off_t TellI() { return -1; }
+  off_t SeekI( off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) ) 
+    { return -1; }
+  off_t TellI() 
+    { return -1; }
 
   bool Eof() { return m_i_socket->IsDisconnected(); }
   size_t LastRead() { return m_i_socket->LastCount(); }
index e23ef48a58f014e58332d0ce8049103c7063dbd2..95422e07dd4ba0caa4a532fe18f6090307fa0506 100644 (file)
@@ -115,8 +115,9 @@ class WXDLLEXPORT wxInputStream {
 
   wxInputStream(wxStreamBuffer *buffer);
 
-  virtual size_t DoRead(void *buffer, size_t size) { return 0; }
-  virtual off_t DoSeekInput(off_t pos, wxSeekMode mode)
+  virtual size_t DoRead(void *WXUNUSED(buffer), size_t WXUNUSED(size) ) 
+         { return 0; }
+  virtual off_t DoSeekInput( off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
          { return wxInvalidOffset; }
   virtual off_t DoTellInput() const
          { return wxInvalidOffset; }
@@ -169,8 +170,9 @@ class WXDLLEXPORT wxOutputStream {
 
   wxOutputStream(wxStreamBuffer *buffer);
 
-  virtual size_t DoWrite(const void *buffer, size_t size) { return 0; }
-  virtual off_t DoSeekOutput(off_t pos, wxSeekMode mode)
+  virtual size_t DoWrite( const void *WXUNUSED(buffer), size_t WXUNUSED(size) ) 
+            { return 0; }
+  virtual off_t DoSeekOutput( off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
             { return wxInvalidOffset; }
   virtual off_t DoTellOutput() const
             { return wxInvalidOffset; }
index 4532de83a86e227316aa1f76921f187e22ebaa95..e27ead03d8c876b218680c062ec58b2f35bc5e56 100644 (file)
@@ -168,11 +168,11 @@ bool wxTCPServer::Create(const wxString& server_name)
   return TRUE;
 }
 
-wxTCPServer::~wxTCPServer (void)
+wxTCPServer::~wxTCPServer(void)
 {
 }
 
-wxConnectionBase *wxTCPServer::OnAcceptConnection(const wxString& topic)
+wxConnectionBase *wxTCPServer::OnAcceptConnection( const wxString& WXUNUSED(topic) )
 {
   return new wxTCPConnection();
 }
index aa8a18a6b5725bb2e59f1d5c4c9ed6fc0d789aaa..5ab0e09d964c0be7e5b70edaec0c8256974a118f 100644 (file)
@@ -1017,7 +1017,7 @@ bool wxSocketBase::DoRequests(wxRequestEvent req_flag)
 void wxSocketBase::WantSpeedBuffer(char *buffer, size_t nbytes,
                                    wxRequestEvent evt)
 {
-  int ret;
+  int ret = 0;
 
   switch (evt) {
   case EVT_PEEK:
@@ -1193,7 +1193,7 @@ wxSocketClient::~wxSocketClient()
 // --------------------------------------------------------------
 // --------- wxSocketClient Connect functions -------------------
 // --------------------------------------------------------------
-bool wxSocketClient::Connect(wxSockAddress& addr_man, bool wait)
+bool wxSocketClient::Connect(wxSockAddress& addr_man, bool WXUNUSED(wait) )
 {
   struct linger linger;