mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 15:37:51 +02:00
LazUtils: Fix a typo in UTF8LowerCaseFast. Merge request !303.
This commit is contained in:
parent
85f227d16f
commit
c43cda1cc5
@ -2916,7 +2916,7 @@ begin
|
||||
while c > 0 do begin
|
||||
t := src^;
|
||||
if (ord(t) and 128) <> 0 then
|
||||
exit(UTF8UpperCase(AText));
|
||||
exit(UTF8LowerCase(AText));
|
||||
if (t in ['A'..'Z']) then
|
||||
t := chr(ord(t) + 32);
|
||||
dst^ := t;
|
||||
|
Loading…
Reference in New Issue
Block a user