Add some missing wxPyBeginBlockThreads calls
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38731 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -842,19 +842,27 @@ public:
|
||||
//wxArrayString* GetFacenames();
|
||||
%extend {
|
||||
PyObject* GetEncodings() {
|
||||
PyObject* ret;
|
||||
wxArrayString* arr = self->GetEncodings();
|
||||
wxPyBlock_t blocked = wxPyBeginBlockThreads();
|
||||
if (arr)
|
||||
return wxArrayString2PyList_helper(*arr);
|
||||
ret = wxArrayString2PyList_helper(*arr);
|
||||
else
|
||||
return PyList_New(0);
|
||||
ret = PyList_New(0);
|
||||
wxPyEndBlockThreads(blocked);
|
||||
return ret;
|
||||
}
|
||||
|
||||
PyObject* GetFacenames() {
|
||||
PyObject* ret;
|
||||
wxArrayString* arr = self->GetFacenames();
|
||||
wxPyBlock_t blocked = wxPyBeginBlockThreads();
|
||||
if (arr)
|
||||
return wxArrayString2PyList_helper(*arr);
|
||||
ret = wxArrayString2PyList_helper(*arr);
|
||||
else
|
||||
return PyList_New(0);
|
||||
ret = PyList_New(0);
|
||||
wxPyEndBlockThreads(blocked);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user