]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/wave.cpp
corrected redraw problems with native controls
[wxWidgets.git] / src / mac / wave.cpp
index 5df346f8254ccf74f8ed0cffc10cad36e11b3456..ac2dcac7e0975e69eb810911937494416c4b9258 100644 (file)
 
 #include "wx/object.h"
 #include "wx/string.h"
-#include "wx/mac/wave.h"
+#include "wx/wave.h"
 
 wxWave::wxWave()
-  : m_hSnd(NULL), m_waveLength(0), m_isResource(true), m_sndChan(0)
+  : m_sndChan(0), m_hSnd(NULL), m_waveLength(0), m_isResource(true)
 {
 }
 
 wxWave::wxWave(const wxString& sFileName, bool isResource)
-  : m_hSnd(NULL), m_waveLength(0), m_isResource(true), m_sndChan(0)
+  : m_sndChan(0), m_hSnd(NULL), m_waveLength(0), m_isResource(true)
 {
     Create(sFileName, isResource);
 }