]> git.saurik.com Git - wxWidgets.git/commitdiff
SWIGged updates for wxMac
authorRobin Dunn <robin@alldunn.com>
Thu, 15 Nov 2001 04:59:26 +0000 (04:59 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 15 Nov 2001 04:59:26 +0000 (04:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12429 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/contrib/stc/mac/stc_.py
wxPython/src/mac/misc2.cpp

index 43305a876e24b8a0c8b7f74503fee6f5065bbf23..daf9abc542af139463b9c54b03fc1458a6ced01b 100644 (file)
@@ -15,6 +15,8 @@ from events import *
 
 from streams import *
 
+from utils import *
+
 from mdi import *
 
 from frames import *
@@ -39,8 +41,6 @@ from sizers import *
 
 from filesys import *
 
-from utils import *
-
 def EVT_STC_CHANGE(win, id, func):
     win.Connect(id, -1, wxEVT_STC_CHANGE, func)
 
index 4dc78796472b2944033f8bfa27bbf4bde8a68b4b..e6cfe72f8307da1667a2159ad7a95c9302f9609c 100644 (file)
@@ -145,7 +145,11 @@ IMP_PYCALLBACK_BOOL_STRINGSTRING(wxPyFontEnumerator, wxFontEnumerator, OnFontEnc
 
 
     bool wxThread_IsMain() {
+#ifdef WXP_WITH_THREAD
         return wxThread::IsMain();
+#else
+        return TRUE;
+#endif
     }
 
 class wxPyTipProvider : public wxTipProvider {