X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b409bb30c79d6441e74a59a33d63e643e4532dea..dcb1fb696ca55c0af0c524c561058717aae36932:/wxPython/src/_sound.i diff --git a/wxPython/src/_sound.i b/wxPython/src/_sound.i index f00622cb77..e120cf52a8 100644 --- a/wxPython/src/_sound.i +++ b/wxPython/src/_sound.i @@ -38,22 +38,22 @@ class wxSound : public wxObject { public: wxSound() { - wxPyBeginBlockThreads(); + bool blocked = wxPyBeginBlockThreads(); PyErr_SetString(PyExc_NotImplementedError, "wxSound is not available on this platform."); - wxPyEndBlockThreads(); + wxPyEndBlockThreads(blocked); } wxSound(const wxString&, bool) { - wxPyBeginBlockThreads(); + bool blocked = wxPyBeginBlockThreads(); PyErr_SetString(PyExc_NotImplementedError, "wxSound is not available on this platform."); - wxPyEndBlockThreads(); + wxPyEndBlockThreads(blocked); } wxSound(int, const wxByte*) { - wxPyBeginBlockThreads(); + bool blocked = wxPyBeginBlockThreads(); PyErr_SetString(PyExc_NotImplementedError, "wxSound is not available on this platform."); - wxPyEndBlockThreads(); + wxPyEndBlockThreads(blocked); } ~wxSound() {}; @@ -92,10 +92,10 @@ public: #else %extend { bool Create(int size, const wxByte* data) { - wxPyBeginBlockThreads(); + bool blocked = wxPyBeginBlockThreads(); PyErr_SetString(PyExc_NotImplementedError, "Create from data is not available on this platform."); - wxPyEndBlockThreads(); + wxPyEndBlockThreads(blocked); return False; } } @@ -113,7 +113,8 @@ public: static void Stop(); #else %extend { - static void Stop() {} + static void Stop() + { wxPyRaiseNotImplemented(); } } #endif