]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/appcmn.cpp
wxX11 STL-ification.
[wxWidgets.git] / src / common / appcmn.cpp
index 162512f876e64406ae2e43bc92e35fd0d38aa6c6..5c19be543e65f930cc18374b375d8a608ec45893 100644 (file)
@@ -502,6 +502,14 @@ void wxGUIAppTraitsBase::RemoveFromPendingDelete(wxObject *object)
     #include "wx/unix/gsockunx.h"
 #elif defined(__WINDOWS__)
     #include "wx/msw/gsockmsw.h"
+#elif defined(__WXMAC__)
+  #include <MacHeaders.c>
+  #define OTUNIXERRORS 1
+  #include <OpenTransport.h>
+  #include <OpenTransportProviders.h>
+  #include <OpenTptInternet.h>
+
+  #include "wx/mac/gsockmac.h"
 #else
     #error "Must include correct GSocket header here"
 #endif
@@ -512,7 +520,7 @@ GSocketGUIFunctionsTable* wxGUIAppTraitsBase::GetSocketGUIFunctionsTable()
     // NB: wxMac does not have any GUI-specific functions in gsocket.c and
     //     so it doesn't need this table at all
     return NULL;
-#else
+#else // !__WXMAC__
     static GSocketGUIFunctionsTable table =
     {
         _GSocket_GUI_Init,
@@ -527,7 +535,7 @@ GSocketGUIFunctionsTable* wxGUIAppTraitsBase::GetSocketGUIFunctionsTable()
         _GSocket_Disable_Events
     };
     return &table;
-#endif
+#endif // __WXMAC__/!__WXMAC__
 }
 
 #endif