]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/mmedia/sndaiff.cpp
Typos fixed and further clarification of the Python situation on Panther
[wxWidgets.git] / contrib / src / mmedia / sndaiff.cpp
index f86a81e34603c3547319e32a506e015729852e28..c0427a7493caad9ec03dd07cb8293d9a0fdbe029 100644 (file)
@@ -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)