lazutils: fixed TXMLConfig.IsLegacyList

git-svn-id: trunk@60695 -
This commit is contained in:
mattias 2019-03-16 13:48:54 +00:00
parent f175271dc3
commit 3acfbb4dd2

View File

@ -615,7 +615,7 @@ end;
function TXMLConfig.IsLegacyList(const APath: string): Boolean;
begin
Result := GetValue(APath+'Count',-1)>1;
Result := GetValue(APath+'Count',-1)>=0;
end;
function TXMLConfig.ExtendedToStr(const e: extended): string;