]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/mmedia/sndbase.cpp
Added accidentally omitted license to match source files
[wxWidgets.git] / contrib / src / mmedia / sndbase.cpp
index ed3ea6ecc7d4ec510a0e0a38ae8a6c3bd0bf7405..d0c96431da5eb27919e29103c34ea8a9dc756960 100644 (file)
@@ -72,7 +72,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 +84,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;
 }