]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/helpers.cpp
fixed warnings about double to int conversions, defined PI as a constant, untabbed
[wxWidgets.git] / wxPython / src / helpers.cpp
index c817051fb8b14501d57095031a87aa5fb04302da..c8cf22a0454fd8425c44b2dd853eb0b20fd839ab 100644 (file)
 
 //----------------------------------------------------------------------
 
-
+#ifdef __WXGTK__
+int  WXDLLEXPORT wxEntryStart( int& argc, char** argv );
+#else
 int  WXDLLEXPORT wxEntryStart( int argc, char** argv );
+#endif
 int  WXDLLEXPORT wxEntryInitGui();
 void WXDLLEXPORT wxEntryCleanup();
 
@@ -454,7 +457,9 @@ unsigned long wxPyGetCurrentThreadId() {
     return (unsigned long)pthread_self();
 #endif
 #ifdef __WXMAC__
-#error Fix this!
+    ThreadID current ;
+    MacGetCurrentThread( &current ) ;
+    return (unsigned long)current;
 #endif
 }