LazUtils: Fix a typo in UTF8LowerCaseFast. Merge request !303.

This commit is contained in:
Juha 2024-07-10 22:55:48 +03:00
parent 85f227d16f
commit c43cda1cc5

View File

@ -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;