#2310 Fix boolean test in isProjectFileVersionEqualOrOlderThan

This commit is contained in:
Magne Sjaastad 2018-01-04 15:24:35 +01:00
parent 0647add116
commit addf200a9e

View File

@ -420,7 +420,7 @@ bool RimProject::isProjectFileVersionEqualOrOlderThan(const QString& otherProjec
{
QString candidateProjectFileVersion = projectFileVersionString();
return RiaProjectFileVersionTools::isCandidateVersionNewerThanOther(candidateProjectFileVersion, otherProjectFileVersion);
return !RiaProjectFileVersionTools::isCandidateVersionNewerThanOther(candidateProjectFileVersion, otherProjectFileVersion);
}
//--------------------------------------------------------------------------------------------------