X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e8482f24cfc00645607f8526fde38d39e0dcaa63..a333f34d91ae845d39ca8a833290e9a1c3d04749:/contrib/src/mmedia/sndaiff.cpp?ds=sidebyside diff --git a/contrib/src/mmedia/sndaiff.cpp b/contrib/src/mmedia/sndaiff.cpp index f86a81e346..6174200eb2 100644 --- a/contrib/src/mmedia/sndaiff.cpp +++ b/contrib/src/mmedia/sndaiff.cpp @@ -55,7 +55,7 @@ wxSoundAiff::~wxSoundAiff() wxString wxSoundAiff::GetCodecName() const { - return "wxSoundAiff codec"; + return wxT("wxSoundAiff codec"); } bool wxSoundAiff::CanRead() @@ -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)