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:
Robin Dunn
2006-04-15 04:29:30 +00:00
parent 619297ab30
commit e6f85a8554
2 changed files with 14 additions and 4 deletions

View File

@@ -24,12 +24,14 @@
%{
static PyObject* __EnumerationHelper(bool flag, wxString& str, long index) {
wxPyBlock_t blocked = wxPyBeginBlockThreads();
PyObject* ret = PyTuple_New(3);
if (ret) {
PyTuple_SET_ITEM(ret, 0, PyInt_FromLong(flag));
PyTuple_SET_ITEM(ret, 1, wx2PyString(str));
PyTuple_SET_ITEM(ret, 2, PyInt_FromLong(index));
}
wxPyEndBlockThreads(blocked);
return ret;
}
%}