Ref T226, renamed to swiftDbAllDataRead

This commit is contained in:
Klaus Basan
2018-01-31 08:35:30 +01:00
parent 5aad426ced
commit bb65b7c280
8 changed files with 17 additions and 18 deletions

View File

@@ -62,7 +62,7 @@ namespace BlackCore
if (sApp && sApp->getWebDataServices())
{
connect(sApp->getWebDataServices(), &CWebDataServices::allSwiftDbDataRead, this, &CContextOwnAircraft::allSwiftWebDataRead);
connect(sApp->getWebDataServices(), &CWebDataServices::swiftDbAllDataRead, this, &CContextOwnAircraft::allSwiftWebDataRead);
}
// Init own aircraft

View File

@@ -79,7 +79,7 @@ namespace BlackCore
// swift data
if (sApp && sApp->hasWebDataServices())
{
connect(sApp->getWebDataServices(), &CWebDataServices::allSwiftDbDataRead, this, &CSimulatorCommon::onSwiftDbAllDataRead, Qt::QueuedConnection);
connect(sApp->getWebDataServices(), &CWebDataServices::swiftDbAllDataRead, this, &CSimulatorCommon::onSwiftDbAllDataRead, Qt::QueuedConnection);
connect(sApp->getWebDataServices(), &CWebDataServices::swiftDbAirportsRead, this, &CSimulatorCommon::onSwiftDbAirportsRead, Qt::QueuedConnection);
connect(sApp->getWebDataServices(), &CWebDataServices::swiftDbModelMatchingEntitiesRead, this, &CSimulatorCommon::onSwiftDbModelMatchingEntitiesRead, Qt::QueuedConnection);
}

View File

@@ -1248,7 +1248,7 @@ namespace BlackCore
const int allUsedEntities = static_cast<int>(this->allDbEntitiesForUsedReaders());
if (((static_cast<int>(m_swiftDbEntitiesRead)) & allUsedEntities) == allUsedEntities)
{
emit this->allSwiftDbDataRead();
emit this->swiftDbAllDataRead();
}
// individual signals

View File

@@ -472,7 +472,7 @@ namespace BlackCore
//! \name Simplified read signals
//! @{
//! All swift DB data have been read
void allSwiftDbDataRead();
void swiftDbAllDataRead();
//! Shared info objects read
void sharedInfoObjectsRead();