small fix

This commit is contained in:
Volker Fischer 2009-02-12 18:15:49 +00:00
parent b38b8c01a7
commit 4c1c6ad14a

View File

@ -345,8 +345,9 @@ void CClientSettingsDlg::OnPingTimeResult ( int iPingTime )
TextLabelBufferDelay->setText ( QString().setNum ( iTotalBufferDelay ) + " ms" );
if ( iPingTime > 500 )
{
TextLabelPingTime->setText ( "<font color=""red""><b>&#62;500 ms</b></font>" );
TextLabelOverallDelay->setText ( "<font color=""red""><b>&#62;500 ms</b></font>" );
const QString sErrorText = "<font color=""red""><b>&#62;500 ms</b></font>";
TextLabelPingTime->setText ( sErrorText );
TextLabelOverallDelay->setText ( sErrorText );
}
else
{