Remove warnings
Implicit conversion from ansi to unicode
This commit is contained in:
parent
af0f3e069f
commit
db15d67e76
@ -3585,10 +3585,10 @@ begin
|
||||
case aType.BaseType of
|
||||
btU8: Result := chr(tbtu8(src^));
|
||||
btU16: Result := widechar(src^);
|
||||
btChar: Result := tbtchar(Src^);
|
||||
btPchar: Result := pansichar(src^);
|
||||
btChar: Result := tbtunicodestring(tbtchar(Src^));
|
||||
btPchar: Result := tbtunicodestring(pansichar(src^));
|
||||
btWideChar: Result := tbtwidechar(Src^);
|
||||
btString: Result := tbtstring(src^);
|
||||
btString: Result := tbtunicodestring(tbtstring(src^));
|
||||
btWideString: Result := tbtwidestring(src^);
|
||||
btVariant: Result := Variant(src^);
|
||||
btUnicodeString: result := tbtUnicodeString(src^);
|
||||
|
Loading…
Reference in New Issue
Block a user