mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 18:25:37 +08:00
Fixed "synchronized" typos
This commit is contained in:
@@ -583,7 +583,7 @@ namespace BlackCore
|
||||
for (CAtcStation &bookedStation : newBookedStations)
|
||||
{
|
||||
// exchange booking and online data, both sides are updated
|
||||
this->m_atcStationsOnline.syncronizeWithBookedStation(bookedStation);
|
||||
this->m_atcStationsOnline.synchronizeWithBookedStation(bookedStation);
|
||||
}
|
||||
this->m_atcStationsBooked = newBookedStations;
|
||||
}
|
||||
@@ -657,7 +657,7 @@ namespace BlackCore
|
||||
if (this->m_atcStationsBooked.containsCallsign(callsign))
|
||||
{
|
||||
CAtcStation bookedStation(this->m_atcStationsBooked.findFirstByCallsign(callsign));
|
||||
station.syncronizeWithBookedStation(bookedStation); // both will be aligned
|
||||
station.synchronizeWithBookedStation(bookedStation); // both will be aligned
|
||||
this->m_atcStationsBooked.replaceIf(&CAtcStation::getCallsign, callsign, bookedStation);
|
||||
}
|
||||
|
||||
|
||||
@@ -140,7 +140,7 @@ namespace BlackCore
|
||||
//! Delete all cookies from cookier manager
|
||||
void deleteAllCookies();
|
||||
|
||||
//! Setup already syncronized
|
||||
//! Setup already synchronized
|
||||
bool isSetupAvailable() const;
|
||||
|
||||
//! Reload setup and version
|
||||
@@ -358,7 +358,7 @@ namespace BlackCore
|
||||
void webDataServicesStarted(bool success);
|
||||
|
||||
protected slots:
|
||||
//! Setup read/syncronized
|
||||
//! Setup read/synchronized
|
||||
void ps_setupAvailable(bool available);
|
||||
|
||||
//! Startup completed
|
||||
|
||||
@@ -359,7 +359,7 @@ namespace BlackCore
|
||||
models = CAircraftModelList::fromDatabaseJson(res);
|
||||
}
|
||||
|
||||
// syncronized update
|
||||
// synchronized update
|
||||
const int n = models.size();
|
||||
qint64 latestTimestamp = models.latestTimestampMsecsSinceEpoch();
|
||||
if (n > 0 && latestTimestamp < 0)
|
||||
|
||||
@@ -55,7 +55,7 @@ namespace BlackCore
|
||||
if (!sApp) { return; } // shutting down
|
||||
|
||||
Q_ASSERT_X(QSslSocket::supportsSsl(), Q_FUNC_INFO, "missing SSL support");
|
||||
Q_ASSERT_X(sApp->isSetupAvailable(), Q_FUNC_INFO, "Setup not syncronized");
|
||||
Q_ASSERT_X(sApp->isSetupAvailable(), Q_FUNC_INFO, "Setup not synchronized");
|
||||
this->setObjectName("CWebDataReader");
|
||||
|
||||
// check if I need info objects
|
||||
|
||||
Reference in New Issue
Block a user