Revert original UNIX C->C++ conversion and instead make it work exactly

like the new MSW C++ GSocket.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28607 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2004-08-03 19:18:39 +00:00
parent 1f360a2db7
commit ba2a81d747
4 changed files with 172 additions and 202 deletions

View File

@@ -588,7 +588,7 @@ void wxGUIAppTraitsBase::RemoveFromPendingDelete(wxObject *object)
GSocketGUIFunctionsTable* wxGUIAppTraitsBase::GetSocketGUIFunctionsTable()
{
#if defined(__WINDOWS__) && defined(wxUSE_GSOCKET_CPLUSPLUS)
#if defined(wxUSE_GSOCKET_CPLUSPLUS)
static GSocketGUIFunctionsTableConcrete table;
return &table;
#else
@@ -612,7 +612,7 @@ GSocketGUIFunctionsTable* wxGUIAppTraitsBase::GetSocketGUIFunctionsTable()
};
return &table;
#endif // !__WXMAC__ || __DARWIN__
#endif // defined(__WINDOWS__) && defined(wxUSE_GSOCKET_CPLUSPLUS)
#endif // defined(wxUSE_GSOCKET_CPLUSPLUS)
}
#endif