X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6670f56440ae9209b3e2e51e06acf3bc5aaf1905..64ea838d8f4d1853b7d850db93ee565e901d099a:/src/os2/sound.cpp diff --git a/src/os2/sound.cpp b/src/os2/sound.cpp index 91d6c1206f..a901a8dc33 100644 --- a/src/os2/sound.cpp +++ b/src/os2/sound.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: sound.cpp +// Name: src/os2/sound.cpp // Purpose: wxSound class implementation: optional // Author: David Webster // Modified by: @@ -42,7 +42,7 @@ wxSound::wxSound(const wxString& sFileName, bool isResource) Create(sFileName, isResource); } -wxSound::wxSound(int size, const wxByte* data) +wxSound::wxSound(size_t size, const void* data) : m_waveData(NULL), m_waveLength(0), m_isResource(FALSE) { Create(size, data); @@ -108,7 +108,7 @@ bool wxSound::Create(const wxString& fileName, bool isResource) } } -bool wxSound::Create(int size, const wxByte* data) +bool wxSound::Create(size_t size, const void* data) { Free(); m_isResource = FALSE; @@ -117,7 +117,7 @@ bool wxSound::Create(int size, const wxByte* data) if (!m_waveData) return FALSE; - for (int i=0; i