X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1b9631c95d80bf961c2e999afb0958b9f542b99c..ad3fca675f77c2903cafd096bbda8baa2e7689ff:/wxPython/src/_log.i diff --git a/wxPython/src/_log.i b/wxPython/src/_log.i index 4a3b7e26b8..96214b20f6 100644 --- a/wxPython/src/_log.i +++ b/wxPython/src/_log.i @@ -250,26 +250,26 @@ public: virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t) { bool found; - wxPyBeginBlockThreads(); + bool blocked = wxPyBeginBlockThreads(); if ((found = wxPyCBH_findCallback(m_myInst, "DoLog"))) { PyObject* s = wx2PyString(szString); wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iOi)", level, s, t)); Py_DECREF(s); } - wxPyEndBlockThreads(); + wxPyEndBlockThreads(blocked); if (! found) wxLog::DoLog(level, szString, t); } virtual void DoLogString(const wxChar *szString, time_t t) { bool found; - wxPyBeginBlockThreads(); + bool blocked = wxPyBeginBlockThreads(); if ((found = wxPyCBH_findCallback(m_myInst, "DoLogString"))) { PyObject* s = wx2PyString(szString); wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", s, t)); Py_DECREF(s); } - wxPyEndBlockThreads(); + wxPyEndBlockThreads(blocked); if (! found) wxLog::DoLogString(szString, t); } @@ -281,7 +281,7 @@ public: // Now tell SWIG about it class wxPyLog : public wxLog { public: - %addtofunc wxPyLog "self._setCallbackInfo(self, PyLog)" + %pythonAppend wxPyLog "self._setCallbackInfo(self, PyLog)" wxPyLog();