mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#2310 Fix boolean test in isProjectFileVersionEqualOrOlderThan
This commit is contained in:
parent
0647add116
commit
addf200a9e
@ -420,7 +420,7 @@ bool RimProject::isProjectFileVersionEqualOrOlderThan(const QString& otherProjec
|
|||||||
{
|
{
|
||||||
QString candidateProjectFileVersion = projectFileVersionString();
|
QString candidateProjectFileVersion = projectFileVersionString();
|
||||||
|
|
||||||
return RiaProjectFileVersionTools::isCandidateVersionNewerThanOther(candidateProjectFileVersion, otherProjectFileVersion);
|
return !RiaProjectFileVersionTools::isCandidateVersionNewerThanOther(candidateProjectFileVersion, otherProjectFileVersion);
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user