Fixed "synchronized" typos

This commit is contained in:
Klaus Basan
2016-11-14 22:51:26 +01:00
parent dff8db131f
commit cb2be14083
13 changed files with 22 additions and 22 deletions

View File

@@ -190,7 +190,7 @@ namespace BlackMisc
this->m_frequency.setUnit(CFrequencyUnit::MHz());
}
void CAtcStation::syncronizeControllerData(CAtcStation &otherStation)
void CAtcStation::synchronizeControllerData(CAtcStation &otherStation)
{
if (this->m_controller == otherStation.getController()) { return; }
CUser otherController = otherStation.getController();
@@ -198,7 +198,7 @@ namespace BlackMisc
otherStation.setController(otherController);
}
void CAtcStation::syncronizeWithBookedStation(CAtcStation &bookedStation)
void CAtcStation::synchronizeWithBookedStation(CAtcStation &bookedStation)
{
if (bookedStation.getCallsign() != this->getCallsign()) { return; }
@@ -261,7 +261,7 @@ namespace BlackMisc
}
// both ways
this->syncronizeControllerData(bookedStation);
this->synchronizeControllerData(bookedStation);
if (this->hasValidRelativeDistance())
{
bookedStation.setRelativeDistance(this->getRelativeDistance());