]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/mmedia/sndaiff.cpp
Updates to MIME-types and wxFileDialog code for better
[wxWidgets.git] / contrib / src / mmedia / sndaiff.cpp
index cca0b66adda61e4ac19c12d1dec4bdcd9257563d..6174200eb2b13df56f08aa6e00fac99c1ca87b8f 100644 (file)
@@ -117,6 +117,7 @@ bool wxSoundAiff::PrepareToPlay()
     // "FORM"
     
     len = data.Read32(); 
+    wxUnusedVar(len);
     FAIL_WITH(m_input->LastRead() != 4, wxSOUND_INVSTRM);
     // dummy len
     
@@ -175,7 +176,7 @@ bool wxSoundAiff::PrepareToPlay()
     return TRUE;
 }
 
-bool wxSoundAiff::PrepareToRecord(wxUint32 time)
+bool wxSoundAiff::PrepareToRecord(wxUint32 WXUNUSED(time))
 {
     // TODO
     return FALSE;
@@ -187,7 +188,7 @@ bool wxSoundAiff::FinishRecording()
     return FALSE;
 }
 
-bool wxSoundAiff::RepositionStream(wxUint32 position)
+bool wxSoundAiff::RepositionStream(wxUint32 WXUNUSED(position))
 {
     // If the stream is not seekable "TellI() returns wxInvalidOffset" we cannot reposition stream
     if (m_base_offset == wxInvalidOffset)