X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c42b1de68a5d4b48c00092d9996574bfb8d8a542..fd39aa23bc480afd9b76bd98f23d97452c7ab0a6:/contrib/src/mmedia/sndbase.cpp diff --git a/contrib/src/mmedia/sndbase.cpp b/contrib/src/mmedia/sndbase.cpp index ccd9882652..e0f2114d4e 100644 --- a/contrib/src/mmedia/sndbase.cpp +++ b/contrib/src/mmedia/sndbase.cpp @@ -4,12 +4,10 @@ // Date: 08/11/1999 // Author: Guilhem Lavaux (C) 1999, 2000 // CVSID: $Id$ +// wxWindows licence // -------------------------------------------------------------------------- -#ifdef __GNUG__ -#pragma implementation "sndbase.cpp" -#endif -#include +#include "wx/wxprec.h" #ifndef WX_PRECOMP #include "wx/defs.h" @@ -34,8 +32,8 @@ wxSoundFormatBase::~wxSoundFormatBase() wxSoundFormatBase *wxSoundFormatBase::Clone() const { - wxLogFatalError(wxT("In wxSoundFormatBase::Clone() but I should" - " not be there")); + wxLogFatalError(wxT("In wxSoundFormatBase::Clone() but I should") + wxT(" not be there")); return NULL; } @@ -72,7 +70,7 @@ wxSoundStream::~wxSoundStream() // important function of the wxSoundStream class. It prepares the stream to // receive or send the data in a strict format. Normally, the sound stream // should be ready to accept any format it is asked to manage but in certain -// cases, it really cannot: in that case it returns FALSE. To have more +// cases, it really cannot: in that case it returns false. To have more // details in the functionnalities of SetSoundFormat see // wxSoundRouterStream::SetSoundFormat() // -------------------------------------------------------------------------- @@ -84,7 +82,7 @@ bool wxSoundStream::SetSoundFormat(const wxSoundFormatBase& format) // create a new one by cloning the format passed in parameter m_sndformat = format.Clone(); - return TRUE; + return true; }