mirror of
https://github.com/OPM/ResInsight.git
synced 2026-09-03 20:53:13 -05:00
#2310 Fix boolean test in isProjectFileVersionEqualOrOlderThan
This commit is contained in:
@@ -420,7 +420,7 @@ bool RimProject::isProjectFileVersionEqualOrOlderThan(const QString& otherProjec
|
||||
{
|
||||
QString candidateProjectFileVersion = projectFileVersionString();
|
||||
|
||||
return RiaProjectFileVersionTools::isCandidateVersionNewerThanOther(candidateProjectFileVersion, otherProjectFileVersion);
|
||||
return !RiaProjectFileVersionTools::isCandidateVersionNewerThanOther(candidateProjectFileVersion, otherProjectFileVersion);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user