X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d38e8d5f34262fa688cd0e5d397a2201978e5fa7..a148cfb64451d6553cf66d1075b654e54e908210:/src/common/sckipc.cpp diff --git a/src/common/sckipc.cpp b/src/common/sckipc.cpp index 49e69e22b3..19c7e4f08e 100644 --- a/src/common/sckipc.cpp +++ b/src/common/sckipc.cpp @@ -89,7 +89,7 @@ static wxSockAddress * GetAddressFromName(const wxString& serverName, const wxString& host = _T("")) { // we always use INET sockets under non-Unix systems -#if defined(__UNIX__) && !defined(__WXMAC__) +#if defined(__UNIX__) && !defined(__WXMAC__) && !defined(__WINE__) // under Unix, if the server name looks like a path, create a AF_UNIX // socket instead of AF_INET one if ( serverName.Find(_T('/')) != wxNOT_FOUND ) @@ -383,7 +383,7 @@ bool wxTCPConnection::Disconnect () m_codeco->Write8(IPC_DISCONNECT); m_sock->Notify(FALSE); m_sock->Close(); - SetConnected(false); + SetConnected(FALSE); return TRUE; } @@ -660,7 +660,7 @@ void wxTCPEventHandler::Client_OnRequest(wxSocketEvent &event) { sock->Notify(FALSE); sock->Close(); - connection->SetConnected(false); + connection->SetConnected(FALSE); connection->OnDisconnect(); break; }