mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
Ref T701, check for model string in reader
This commit is contained in:
committed by
Mat Sutcliffe
parent
ea7b3316c9
commit
e376c18b28
@@ -668,6 +668,12 @@ namespace BlackCore
|
||||
return CAircraftModel();
|
||||
}
|
||||
|
||||
bool CWebDataServices::containsModelString(const QString &modelString) const
|
||||
{
|
||||
if (m_modelDataReader) { return m_modelDataReader->containsModelString(modelString); }
|
||||
return false;
|
||||
}
|
||||
|
||||
CAircraftModel CWebDataServices::getModelForDbKey(int dbKey) const
|
||||
{
|
||||
if (m_modelDataReader) { return m_modelDataReader->getModelForDbKey(dbKey); }
|
||||
|
||||
Reference in New Issue
Block a user