From b409bb30c79d6441e74a59a33d63e643e4532dea Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 18 Feb 2004 02:23:01 +0000 Subject: [PATCH] fixed a compile warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_sound.i | 1 + wxPython/src/mac/misc_wrap.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/wxPython/src/_sound.i b/wxPython/src/_sound.i index c91c6a91eb..f00622cb77 100644 --- a/wxPython/src/_sound.i +++ b/wxPython/src/_sound.i @@ -96,6 +96,7 @@ public: PyErr_SetString(PyExc_NotImplementedError, "Create from data is not available on this platform."); wxPyEndBlockThreads(); + return False; } } #endif diff --git a/wxPython/src/mac/misc_wrap.cpp b/wxPython/src/mac/misc_wrap.cpp index bf5a8c27be..2df44bb2a9 100644 --- a/wxPython/src/mac/misc_wrap.cpp +++ b/wxPython/src/mac/misc_wrap.cpp @@ -717,6 +717,7 @@ bool wxSound_Create__SWIG_1(wxSound *self,int size,wxByte const *data){ PyErr_SetString(PyExc_NotImplementedError, "Create from data is not available on this platform."); wxPyEndBlockThreads(); + return False; } void Sound_Stop(){} -- 2.45.2