FIX: Some warnings

This commit is contained in:
Alexander Koblov 2015-11-28 20:26:21 +00:00
commit a35c42e065
4 changed files with 60 additions and 2 deletions

View file

@ -15,7 +15,7 @@ function MakeSpellCode(stText: UnicodeString): String;
implementation
uses
SysUtils;
SysUtils, LazUTF8;
const
strChineseCharList: array [1..270] of String = (
@ -322,7 +322,7 @@ begin
end;
end
else
Result := Result + c;
Result := Result + UTF16ToUTF8(c);
end;
end;