Ref T289, merge CSimulatorCommonn/ISimulator

This commit is contained in:
Klaus Basan
2018-07-11 23:39:27 +02:00
parent 78861166ad
commit d0adcc98cb
11 changed files with 1183 additions and 1359 deletions

View File

@@ -123,7 +123,7 @@ namespace BlackSimPlugin
CAirportList CSimulatorFsCommon::getAirportsInRange() const
{
if (!m_airportsInRangeFromSimulator.isEmpty()) { return m_airportsInRangeFromSimulator; }
return CSimulatorCommon::getAirportsInRange();
return ISimulator::getAirportsInRange();
}
void CSimulatorFsCommon::onSwiftDbAirportsRead()
@@ -133,7 +133,7 @@ namespace BlackSimPlugin
{
m_airportsInRangeFromSimulator.updateMissingParts(webServiceAirports);
}
CSimulatorCommon::onSwiftDbAirportsRead();
ISimulator::onSwiftDbAirportsRead();
}
} // namespace
} // namespace

View File

@@ -20,8 +20,6 @@
#include <QObject>
#include <memory>
#include <blackcore/simulatorcommon.h>
namespace BlackSimPlugin
{
namespace FsCommon