fix typo, resolve warnings
This commit is contained in:
parent
3fae9fb1cf
commit
03a1103629
2 changed files with 6 additions and 6 deletions
|
@ -109,8 +109,8 @@ CClientSettingsDlg::CClientSettingsDlg ( CClient* pNCliP, QWidget* parent,
|
||||||
"setting has to be changed in the sound card driver. On Windows, press "
|
"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, "
|
"the ASIO Setup button to open the driver settings panel. On Linux, "
|
||||||
"use the Jack configuration tool to change the buffer size.<br>"
|
"use the Jack configuration tool to change the buffer size.<br>"
|
||||||
"If no buffer size is selected and all settings are disabled, a "
|
"If no buffer size is selected and all settings are disabled, an "
|
||||||
"unsupported bufffer size is used by the driver. The llcon software "
|
"unsupported buffer size is used by the driver. The llcon software "
|
||||||
"will still work with this setting but with restricted performannce.<br>"
|
"will still work with this setting but with restricted performannce.<br>"
|
||||||
"The actual buffer delay has influence on the connection status, the "
|
"The actual buffer delay has influence on the connection status, the "
|
||||||
"current upload rate and the overall delay. The lower the buffer size, "
|
"current upload rate and the overall delay. The lower the buffer size, "
|
||||||
|
@ -386,7 +386,7 @@ void CClientSettingsDlg::UpdateSoundCardFrame()
|
||||||
pClient->GetFraSiFactSafeSupported() );
|
pClient->GetFraSiFactSafeSupported() );
|
||||||
}
|
}
|
||||||
|
|
||||||
void CClientSettingsDlg::showEvent ( QShowEvent* showEvent )
|
void CClientSettingsDlg::showEvent ( QShowEvent* )
|
||||||
{
|
{
|
||||||
// only activate ping timer if window is actually shown
|
// only activate ping timer if window is actually shown
|
||||||
TimerPing.start ( PING_UPDATE_TIME );
|
TimerPing.start ( PING_UPDATE_TIME );
|
||||||
|
@ -394,7 +394,7 @@ void CClientSettingsDlg::showEvent ( QShowEvent* showEvent )
|
||||||
UpdateDisplay();
|
UpdateDisplay();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CClientSettingsDlg::hideEvent ( QHideEvent* hideEvent )
|
void CClientSettingsDlg::hideEvent ( QHideEvent* )
|
||||||
{
|
{
|
||||||
// if window is closed, stop timer for ping
|
// if window is closed, stop timer for ping
|
||||||
TimerPing.stop();
|
TimerPing.stop();
|
||||||
|
|
|
@ -71,8 +71,8 @@ protected:
|
||||||
QString GenSndCrdBufferDelayString ( const int iFrameSize,
|
QString GenSndCrdBufferDelayString ( const int iFrameSize,
|
||||||
const QString strAddText = "" );
|
const QString strAddText = "" );
|
||||||
|
|
||||||
virtual void showEvent ( QShowEvent* showEvent );
|
virtual void showEvent ( QShowEvent* );
|
||||||
virtual void hideEvent ( QHideEvent* hideEvent );
|
virtual void hideEvent ( QHideEvent* );
|
||||||
|
|
||||||
CClient* pClient;
|
CClient* pClient;
|
||||||
QTimer TimerStatus;
|
QTimer TimerStatus;
|
||||||
|
|
Loading…
Reference in a new issue