]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/helpers.cpp
Corrected typo in wxStringHashTable::Delete
[wxWidgets.git] / wxPython / src / helpers.cpp
index 72f84096ac7043aecd26c66a052b6aa1aa71f2e0..d61298ef7423a1f979052dec429e4df421359314 100644 (file)
@@ -182,6 +182,8 @@ void __wxPreStart()
     wxPyTMutex = new wxMutex;
 #endif
 
+    wxApp::CheckBuildOptions(wxBuildOptions());
+
     // Bail out if there is already a wxApp created.  This means that the
     // toolkit has already been initialized, as in embedding wxPython in
     // a C++ wxWindows app, so we don't need to call wxEntryStart.
@@ -641,8 +643,9 @@ void wxPyBeginBlockThreads() {
 
 void wxPyEndBlockThreads() {
 #ifdef WXP_WITH_THREAD
-    PyThreadState* tstate = PyEval_SaveThread();
     // Is there any need to save it again?
+    // PyThreadState* tstate =
+    PyEval_SaveThread();
 #endif
 }