Ref T348, file handling in aircraft model (renaming)

Related: Ref T317 Ref T247 Ref T335
This commit is contained in:
Klaus Basan
2018-09-13 02:01:40 +02:00
parent da2a7f6506
commit c11a38dbde
3 changed files with 8 additions and 8 deletions

View File

@@ -349,7 +349,7 @@ namespace BlackMisc
{
return this->findBy([](const CAircraftModel & model)
{
return !model.existsCorrespondingFile();
return !model.hasExistingCorrespondingFile();
});
}
@@ -357,7 +357,7 @@ namespace BlackMisc
{
return this->findBy([](const CAircraftModel & model)
{
return model.existsCorrespondingFile();
return model.hasExistingCorrespondingFile();
});
}