no changes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23003 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2003-08-18 23:56:42 +00:00
parent 3ffb81a423
commit 1b9a0df679

View File

@ -520,7 +520,7 @@ GSocketGUIFunctionsTable* wxGUIAppTraitsBase::GetSocketGUIFunctionsTable()
// NB: wxMac does not have any GUI-specific functions in gsocket.c and // NB: wxMac does not have any GUI-specific functions in gsocket.c and
// so it doesn't need this table at all // so it doesn't need this table at all
return NULL; return NULL;
#else #else // !__WXMAC__
static GSocketGUIFunctionsTable table = static GSocketGUIFunctionsTable table =
{ {
_GSocket_GUI_Init, _GSocket_GUI_Init,
@ -535,7 +535,7 @@ GSocketGUIFunctionsTable* wxGUIAppTraitsBase::GetSocketGUIFunctionsTable()
_GSocket_Disable_Events _GSocket_Disable_Events
}; };
return &table; return &table;
#endif #endif // __WXMAC__/!__WXMAC__
} }
#endif #endif