fix typo
This commit is contained in:
parent
059d9ef203
commit
044e4f3dba
3 changed files with 4 additions and 4 deletions
|
@ -637,7 +637,7 @@ void CServerDlg::UpdateGUIDependencies()
|
|||
case SRS_TIME_OUT:
|
||||
case SRS_CENTRAL_SVR_FULL:
|
||||
case SRS_VERSION_TOO_OLD:
|
||||
case SRS_NOT_FULFILL_REQIREMENTS:
|
||||
case SRS_NOT_FULFILL_REQUIREMENTS:
|
||||
strStatus = "<font color=""red""><b>" + strStatus + "</b></font>";
|
||||
break;
|
||||
|
||||
|
|
|
@ -516,7 +516,7 @@ void CServerListManager::StoreRegistrationResult ( ESvrRegResult eResult )
|
|||
break;
|
||||
|
||||
case ESvrRegResult::SRR_NOT_FULFILL_REQIREMENTS:
|
||||
SetSvrRegStatus ( ESvrRegStatus::SRS_NOT_FULFILL_REQIREMENTS );
|
||||
SetSvrRegStatus ( ESvrRegStatus::SRS_NOT_FULFILL_REQUIREMENTS );
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
@ -633,7 +633,7 @@ enum ESvrRegStatus
|
|||
SRS_REGISTERED,
|
||||
SRS_CENTRAL_SVR_FULL,
|
||||
SRS_VERSION_TOO_OLD,
|
||||
SRS_NOT_FULFILL_REQIREMENTS
|
||||
SRS_NOT_FULFILL_REQUIREMENTS
|
||||
};
|
||||
|
||||
inline QString svrRegStatusToString ( ESvrRegStatus eSvrRegStatus )
|
||||
|
@ -664,7 +664,7 @@ inline QString svrRegStatusToString ( ESvrRegStatus eSvrRegStatus )
|
|||
case SRS_VERSION_TOO_OLD:
|
||||
return QCoreApplication::translate ( "CServerDlg", "Your server version is too old" );
|
||||
|
||||
case SRS_NOT_FULFILL_REQIREMENTS:
|
||||
case SRS_NOT_FULFILL_REQUIREMENTS:
|
||||
return QCoreApplication::translate ( "CServerDlg", "Requirements not fulfilled" );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue