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

@@ -143,14 +143,14 @@ namespace BlackMisc
//! Set position
void setPosition(const BlackMisc::Geo::CCoordinateGeodetic &position) { this->m_position = position; }
//! Syncronize controller data
//! Synchronize controller data
//! Updates two stations (normally a booked and online ATC station) with complementary data
void syncronizeControllerData(CAtcStation &otherStation);
void synchronizeControllerData(CAtcStation &otherStation);
//! Syncronize station data
//! Synchronize station data
//! Updates the two stations (a booked and online ATC station) with complementary data
//! \pre this object is the online station, the passed station the booked station
void syncronizeWithBookedStation(CAtcStation &bookedStation);
void synchronizeWithBookedStation(CAtcStation &bookedStation);
//! Get the radius of the controller's area of visibility.
const BlackMisc::PhysicalQuantities::CLength &getRange() const { return m_range; }