X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e8482f24cfc00645607f8526fde38d39e0dcaa63..d1a6e2b7a103d761fbc15e0e9c1c20ab53a849d9:/contrib/src/mmedia/sndaiff.cpp diff --git a/contrib/src/mmedia/sndaiff.cpp b/contrib/src/mmedia/sndaiff.cpp index f86a81e346..c0427a7493 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() @@ -175,7 +175,7 @@ bool wxSoundAiff::PrepareToPlay() return TRUE; } -bool wxSoundAiff::PrepareToRecord(wxUint32 time) +bool wxSoundAiff::PrepareToRecord(wxUint32 WXUNUSED(time)) { // TODO return FALSE; @@ -187,7 +187,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)