unused parameter warnings suppressed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3712 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-09-18 16:57:21 +00:00
parent 45c94d784d
commit 6e31e94063
5 changed files with 39 additions and 34 deletions

View File

@@ -61,7 +61,9 @@ class WXDLLEXPORT wxHtmlCell : public wxObject
int GetWidth() const {return m_Width;} int GetWidth() const {return m_Width;}
int GetHeight() const {return m_Height;} int GetHeight() const {return m_Height;}
int GetDescent() const {return m_Descent;} int GetDescent() const {return m_Descent;}
virtual wxString GetLink(int x = 0, int y = 0) const {return m_Link;} virtual wxString GetLink(int WXUNUSED(x) = 0,
int WXUNUSED(y) = 0) const
{ return m_Link; }
// returns the link associated with this cell. The position is position within // returns the link associated with this cell. The position is position within
// the cell so it varies from 0 to m_Width, from 0 to m_Height // the cell so it varies from 0 to m_Width, from 0 to m_Height
wxHtmlCell *GetNext() const {return m_Next;} wxHtmlCell *GetNext() const {return m_Next;}

View File

@@ -202,7 +202,7 @@ class WXDLLEXPORT wxHtmlTagsModule : public wxModule
virtual bool OnInit(); virtual bool OnInit();
virtual void OnExit(); virtual void OnExit();
virtual void FillHandlersTable(wxHtmlWinParser *parser) {} virtual void FillHandlersTable(wxHtmlWinParser * WXUNUSED(parser)) { }
// This is called by wxHtmlWinParser. // This is called by wxHtmlWinParser.
// The method must simply call parser->AddTagHandler(new <handler_class_name>); // The method must simply call parser->AddTagHandler(new <handler_class_name>);
// for each handler // for each handler

View File

@@ -70,12 +70,12 @@ void Client_OnRequest(wxSocketBase& sock,
// wxTCPClient // wxTCPClient
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
wxTCPClient::wxTCPClient (void) wxTCPClient::wxTCPClient ()
: wxClientBase() : wxClientBase()
{ {
} }
wxTCPClient::~wxTCPClient (void) wxTCPClient::~wxTCPClient ()
{ {
} }
@@ -147,7 +147,7 @@ wxConnectionBase *wxTCPClient::OnMakeConnection()
// wxTCPServer // wxTCPServer
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
wxTCPServer::wxTCPServer (void) wxTCPServer::wxTCPServer ()
: wxServerBase() : wxServerBase()
{ {
} }
@@ -169,7 +169,7 @@ bool wxTCPServer::Create(const wxString& server_name)
return TRUE; return TRUE;
} }
wxTCPServer::~wxTCPServer(void) wxTCPServer::~wxTCPServer()
{ {
} }
@@ -182,17 +182,17 @@ wxConnectionBase *wxTCPServer::OnAcceptConnection( const wxString& WXUNUSED(topi
// wxTCPConnection // wxTCPConnection
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
wxTCPConnection::wxTCPConnection (void) wxTCPConnection::wxTCPConnection ()
: wxConnectionBase(), : wxConnectionBase(),
m_sock(NULL), m_sockstrm(NULL), m_codeci(NULL), m_codeco(NULL) m_sock(NULL), m_sockstrm(NULL), m_codeci(NULL), m_codeco(NULL)
{ {
} }
wxTCPConnection::wxTCPConnection(char *buffer, int size) wxTCPConnection::wxTCPConnection(char * WXUNUSED(buffer), int WXUNUSED(size))
{ {
} }
wxTCPConnection::~wxTCPConnection (void) wxTCPConnection::~wxTCPConnection ()
{ {
wxDELETE(m_sock); wxDELETE(m_sock);
wxDELETE(m_codeci); wxDELETE(m_codeci);
@@ -206,7 +206,7 @@ void wxTCPConnection::Compress(bool WXUNUSED(on))
} }
// Calls that CLIENT can make. // Calls that CLIENT can make.
bool wxTCPConnection::Disconnect (void) bool wxTCPConnection::Disconnect ()
{ {
// Send the the disconnect message to the peer. // Send the the disconnect message to the peer.
m_codeco->Write8(IPC_DISCONNECT); m_codeco->Write8(IPC_DISCONNECT);

View File

@@ -863,7 +863,8 @@ char *wxSocketBase::CallbackData(char *data)
// wxSocketBase automatic notifier // wxSocketBase automatic notifier
// -------------------------------------------------------------- // --------------------------------------------------------------
static void LINKAGEMODE wx_socket_callback(GSocket *socket, GSocketEvent event, char *cdata) static void LINKAGEMODE wx_socket_callback(GSocket * WXUNUSED(socket),
GSocketEvent event, char *cdata)
{ {
wxSocketBase *sckobj = (wxSocketBase *)cdata; wxSocketBase *sckobj = (wxSocketBase *)cdata;
@@ -940,7 +941,7 @@ void wxSocketBase::OnRequest(wxSocketNotify req_evt)
} }
} }
void wxSocketBase::OldOnNotify(wxSocketNotify evt) void wxSocketBase::OldOnNotify(wxSocketNotify WXUNUSED(evt))
{ {
} }

View File

@@ -1786,10 +1786,12 @@ void wxPropertyStringListEditorDialog::OnText(wxCommandEvent& event)
} }
} }
void wxPropertyStringListEditorDialog::OnCloseWindow(wxCloseEvent& event) void
wxPropertyStringListEditorDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
{ {
SaveCurrentSelection(); SaveCurrentSelection();
this->Destroy();
Destroy();
} }
void wxPropertyStringListEditorDialog::SaveCurrentSelection(void) void wxPropertyStringListEditorDialog::SaveCurrentSelection(void)