]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/sound.h
Applied rowspan patch #15276 (dghart)
[wxWidgets.git] / include / wx / os2 / sound.h
index 43d09536ba871a553d8615c62c95658416c6497a..b409029e8be8ade4d43e18f09d8d3cf5d3820ab7 100644 (file)
@@ -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();