mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-21 02:19:48 +01:00
laz_xmlcfg: using CompareText
git-svn-id: trunk@24731 -
This commit is contained in:
parent
3fb7dc3c0e
commit
e47cce723c
@ -240,9 +240,9 @@ begin
|
|||||||
|
|
||||||
s := GetValue(APath, s);
|
s := GetValue(APath, s);
|
||||||
|
|
||||||
if AnsiCompareText(s,'TRUE')=0 then
|
if CompareText(s,'TRUE')=0 then
|
||||||
Result := True
|
Result := True
|
||||||
else if AnsiCompareText(s,'FALSE')=0 then
|
else if CompareText(s,'FALSE')=0 then
|
||||||
Result := False
|
Result := False
|
||||||
else
|
else
|
||||||
Result := ADefault;
|
Result := ADefault;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user