X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/80fdcdb90ef779185492dab676d461fc34933312..8e77fd8bca165aab9709649d79a7cbc6a172d4e1:/include/wx/os2/sound.h diff --git a/include/wx/os2/sound.h b/include/wx/os2/sound.h index 43d09536ba..b409029e8b 100644 --- a/include/wx/os2/sound.h +++ b/include/wx/os2/sound.h @@ -20,16 +20,16 @@ class wxSound : public wxSoundBase public: wxSound(); wxSound(const wxString& fileName, bool isResource = FALSE); - wxSound(int size, const wxByte* data); + wxSound(size_t size, const void* data); virtual ~wxSound(); public: // Create from resource or file bool Create(const wxString& fileName, bool isResource = FALSE); // Create from data - bool Create(int size, const wxByte* data); + bool Create(size_t size, const void* data); - bool IsOk() const { return (m_waveData ? TRUE : FALSE); }; + bool IsOk() const { return (m_waveData ? TRUE : FALSE); } protected: bool Free();