mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 15:45:46 +08:00
Fixed "synchronized" typos
This commit is contained in:
@@ -57,7 +57,7 @@ namespace BlackMisc
|
||||
return this->findBy(Predicates::MemberValid(&CAtcStation::getController)).transform(Predicates::MemberTransform(&CAtcStation::getController));
|
||||
}
|
||||
|
||||
int CAtcStationList::syncronizeWithBookedStation(CAtcStation &bookedAtcStation)
|
||||
int CAtcStationList::synchronizeWithBookedStation(CAtcStation &bookedAtcStation)
|
||||
{
|
||||
int c = 0;
|
||||
bookedAtcStation.setOnline(false); // reset
|
||||
@@ -66,7 +66,7 @@ namespace BlackMisc
|
||||
for (auto i = this->begin(); i != this->end(); ++i)
|
||||
{
|
||||
if (i->getCallsign() != bookedAtcStation.getCallsign()) { continue; }
|
||||
i->syncronizeWithBookedStation(bookedAtcStation);
|
||||
i->synchronizeWithBookedStation(bookedAtcStation);
|
||||
c++;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user