Suppress warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@708 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1998-09-07 18:04:27 +00:00
parent a60c99e6a9
commit e22036dc39
4 changed files with 18 additions and 12 deletions

View 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();
}