Skip to content

Commit 044e4f3

Browse files
committed
fix typo
1 parent 059d9ef commit 044e4f3

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/serverdlg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ void CServerDlg::UpdateGUIDependencies()
637637
case SRS_TIME_OUT:
638638
case SRS_CENTRAL_SVR_FULL:
639639
case SRS_VERSION_TOO_OLD:
640-
case SRS_NOT_FULFILL_REQIREMENTS:
640+
case SRS_NOT_FULFILL_REQUIREMENTS:
641641
strStatus = "<font color=""red""><b>" + strStatus + "</b></font>";
642642
break;
643643

src/serverlist.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ void CServerListManager::StoreRegistrationResult ( ESvrRegResult eResult )
516516
break;
517517

518518
case ESvrRegResult::SRR_NOT_FULFILL_REQIREMENTS:
519-
SetSvrRegStatus ( ESvrRegStatus::SRS_NOT_FULFILL_REQIREMENTS );
519+
SetSvrRegStatus ( ESvrRegStatus::SRS_NOT_FULFILL_REQUIREMENTS );
520520
break;
521521

522522
default:

src/util.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ enum ESvrRegStatus
633633
SRS_REGISTERED,
634634
SRS_CENTRAL_SVR_FULL,
635635
SRS_VERSION_TOO_OLD,
636-
SRS_NOT_FULFILL_REQIREMENTS
636+
SRS_NOT_FULFILL_REQUIREMENTS
637637
};
638638

639639
inline QString svrRegStatusToString ( ESvrRegStatus eSvrRegStatus )
@@ -664,7 +664,7 @@ inline QString svrRegStatusToString ( ESvrRegStatus eSvrRegStatus )
664664
case SRS_VERSION_TOO_OLD:
665665
return QCoreApplication::translate ( "CServerDlg", "Your server version is too old" );
666666

667-
case SRS_NOT_FULFILL_REQIREMENTS:
667+
case SRS_NOT_FULFILL_REQUIREMENTS:
668668
return QCoreApplication::translate ( "CServerDlg", "Requirements not fulfilled" );
669669
}
670670

0 commit comments

Comments
 (0)