mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-28 20:49:16 +02: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);
|
||||
|
||||
if AnsiCompareText(s,'TRUE')=0 then
|
||||
if CompareText(s,'TRUE')=0 then
|
||||
Result := True
|
||||
else if AnsiCompareText(s,'FALSE')=0 then
|
||||
else if CompareText(s,'FALSE')=0 then
|
||||
Result := False
|
||||
else
|
||||
Result := ADefault;
|
||||
|
Loading…
Reference in New Issue
Block a user