]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/sound.h
Native wxControl::DoGetBestSize() implementation
[wxWidgets.git] / include / wx / sound.h
index 3e470dd11b78b5b29212aa1bb7767a7303310446..75806a53a31143815cb8ca55f580f9ba41df83f3 100644 (file)
@@ -43,7 +43,7 @@
 #endif
 
 // Base class for wxSound implementations
-class wxSoundBase : public wxObject
+class WXDLLIMPEXP_ADV wxSoundBase : public wxObject
 {
 public:
     // Play the sound:
@@ -71,12 +71,12 @@ protected:
 
 #if defined(__WXMSW__)
     #include "wx/msw/sound.h"
-#elif defined(__UNIX__)
-    #include "wx/unix/sound.h"
 #elif defined(__WXMAC__)
     #include "wx/mac/sound.h"
 #elif defined(__WXPM__)
     #include "wx/os2/sound.h"
+#elif defined(__UNIX__)
+    #include "wx/unix/sound.h"
 #endif
 
 // ----------------------------------------------------------------------------