]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_wave.i
Use a compatible bitmap if a depth of -1 is given
[wxWidgets.git] / wxPython / src / _wave.i
index cb4ba5232fd695cedbe8555f8ada291895edccb7..994ccfb957a6f723f62e1293bce157bcc9a27cdf 100644 (file)
 //---------------------------------------------------------------------------
 
 %{
-#if !wxUSE_WAVE
+#if !wxUSE_SOUND
 // A C++ stub class for wxWave for platforms that don't have it.
 class wxWave : public wxObject
 {
 public:
     wxWave(const wxString& fileName, bool isResource = False) {
         wxPyBeginBlockThreads();
-        PyErr_SetString(PyExc_NotImplementedError, "wxWave is not available on this platform.");
+        PyErr_SetString(PyExc_NotImplementedError,
+                        "wxWave is not available on this platform.");
         wxPyEndBlockThreads();
     }
     wxWave(int size, const wxByte* data) {
         wxPyBeginBlockThreads();
-        PyErr_SetString(PyExc_NotImplementedError, "wxWave is not available on this platform.");
+        PyErr_SetString(PyExc_NotImplementedError,
+                        "wxWave is not available on this platform.");
         wxPyEndBlockThreads();
     }
 
@@ -63,7 +65,7 @@ public:
     ~wxWave();
 
     bool  IsOk() const;
-    bool  Play(bool async = True, bool looped = False) const;
+    bool  Play(bool async = True, bool looped = False);
 
     %pythoncode { def __nonzero__(self): return self.IsOk() }
 };