Also allow to set "only in error/warning" case from validation dialog

This commit is contained in:
Klaus Basan
2019-05-08 02:49:55 +02:00
parent 336b87ce86
commit efe54443cc
6 changed files with 55 additions and 21 deletions

View File

@@ -51,6 +51,13 @@ namespace BlackMisc
this->setMatchingMode(m);
}
void CAircraftMatcherSetup::setOnlyShowVerificationWarningsAndErrors(bool only)
{
MatchingMode m = this->getMatchingMode();
m.setFlag(ModelVerificationOnlyWarnError, only);
this->setMatchingMode(m);
}
QString CAircraftMatcherSetup::convertToQString(bool i18n) const
{
Q_UNUSED(i18n);