From 3d6b4772f17112c3b74b8153fda3a2a31482b0cb Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Thu, 18 Feb 2010 20:59:14 +0000 Subject: [PATCH] fix compiler warnings --- linux/sound.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/linux/sound.h b/linux/sound.h index 547bb3f7..f63d4fff 100755 --- a/linux/sound.h +++ b/linux/sound.h @@ -87,14 +87,14 @@ public: // not used int GetNumDev() { return 1; } - QString GetDeviceName ( const int iDiD ) { return "wave mapper"; } - QString SetDev ( const int iNewDev ) { return ""; } // dummy + QString GetDeviceName ( const int ) { return "wave mapper"; } + QString SetDev ( const int ) { return ""; } // dummy int GetDev() { return 0; } // dummy definitions virtual int Init ( const int iNewPrefMonoBufferSize ) { CSoundBase::Init ( iNewPrefMonoBufferSize ); } - virtual bool Read ( CVector& psData ) { printf ( "no sound!" ); return false; } - virtual bool Write ( CVector& psData ) { printf ( "no sound!" ); return false; } + virtual bool Read ( CVector& ) { printf ( "no sound!" ); return false; } + virtual bool Write ( CVector& ) { printf ( "no sound!" ); return false; } }; #endif // WITH_SOUND