From bb5919e4df7131328ed1f3e18ef3129e67d9e108 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 9 Mar 2004 22:03:33 +0000 Subject: [PATCH] Use wxPyRaiseNotImplemented git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26150 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_sound.i | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wxPython/src/_sound.i b/wxPython/src/_sound.i index f00622cb77..8e938e3824 100644 --- a/wxPython/src/_sound.i +++ b/wxPython/src/_sound.i @@ -113,7 +113,8 @@ public: static void Stop(); #else %extend { - static void Stop() {} + static void Stop() + { wxPyRaiseNotImplemented(); } } #endif -- 2.45.2