diff --git a/src/clientsettingsdlg.cpp b/src/clientsettingsdlg.cpp index 8dccd384..6001c3f7 100755 --- a/src/clientsettingsdlg.cpp +++ b/src/clientsettingsdlg.cpp @@ -109,8 +109,8 @@ CClientSettingsDlg::CClientSettingsDlg ( CClient* pNCliP, QWidget* parent, "setting has to be changed in the sound card driver. On Windows, press " "the ASIO Setup button to open the driver settings panel. On Linux, " "use the Jack configuration tool to change the buffer size.
" - "If no buffer size is selected and all settings are disabled, a " - "unsupported bufffer size is used by the driver. The llcon software " + "If no buffer size is selected and all settings are disabled, an " + "unsupported buffer size is used by the driver. The llcon software " "will still work with this setting but with restricted performannce.
" "The actual buffer delay has influence on the connection status, the " "current upload rate and the overall delay. The lower the buffer size, " @@ -386,7 +386,7 @@ void CClientSettingsDlg::UpdateSoundCardFrame() pClient->GetFraSiFactSafeSupported() ); } -void CClientSettingsDlg::showEvent ( QShowEvent* showEvent ) +void CClientSettingsDlg::showEvent ( QShowEvent* ) { // only activate ping timer if window is actually shown TimerPing.start ( PING_UPDATE_TIME ); @@ -394,7 +394,7 @@ void CClientSettingsDlg::showEvent ( QShowEvent* showEvent ) UpdateDisplay(); } -void CClientSettingsDlg::hideEvent ( QHideEvent* hideEvent ) +void CClientSettingsDlg::hideEvent ( QHideEvent* ) { // if window is closed, stop timer for ping TimerPing.stop(); diff --git a/src/clientsettingsdlg.h b/src/clientsettingsdlg.h index dac2fc3a..31708f3a 100755 --- a/src/clientsettingsdlg.h +++ b/src/clientsettingsdlg.h @@ -71,8 +71,8 @@ protected: QString GenSndCrdBufferDelayString ( const int iFrameSize, const QString strAddText = "" ); - virtual void showEvent ( QShowEvent* showEvent ); - virtual void hideEvent ( QHideEvent* hideEvent ); + virtual void showEvent ( QShowEvent* ); + virtual void hideEvent ( QHideEvent* ); CClient* pClient; QTimer TimerStatus;