]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/sound.cpp
Fix timeout used in POSIX implementation of wxCondition::WaitTimeout().
[wxWidgets.git] / src / palmos / sound.cpp
index 6fc7f20d68a88827382cb77fa3026997784d3119..40e73365e378fd1da04269a5008480f9e6fa09bd 100644 (file)
@@ -36,7 +36,7 @@ wxSound::wxSound(const wxString& sFileName, bool 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)
 {
 }
@@ -50,7 +50,7 @@ bool wxSound::Create(const wxString& fileName, bool isResource)
     return false;
 }
 
-bool wxSound::Create(int size, const wxByte* data)
+bool wxSound::Create(size_t size, const void* data)
 {
     return false;
 }