Ref T298, improved/fixed re-matching (match all aircraft again)

- reset to network model (otherwise we match "matched model" -> "matched model")
- renamed/added functions doMtachingAgain/doMatchinsAgain in contexts
This commit is contained in:
Klaus Basan
2018-08-24 16:58:03 +02:00
parent 1b72333b05
commit cb351aca1a
8 changed files with 59 additions and 10 deletions

View File

@@ -238,8 +238,15 @@ namespace BlackCore
return false;
}
//! \copydoc IContextSimulator::doMappingAgain
virtual bool doMappingAgain(const BlackMisc::Aviation::CCallsign &callsign) override
//! \copydoc IContextSimulator::doMatchingsAgain
virtual int doMatchingsAgain() override
{
return 0;
}
//! \copydoc IContextSimulator::doMatchingAgain
virtual bool doMatchingAgain(const BlackMisc::Aviation::CCallsign &callsign) override
{
Q_UNUSED(callsign);
return false;