Merged revision(s) 52442 #ba872ba5b1 from trunk:

LazUtils: Use cwstring always on unix systems. WideCompare* functions require it.
........

git-svn-id: branches/fixes_1_6@52460 -
This commit is contained in:
maxim 2016-06-08 22:22:08 +00:00
parent 7575d3db56
commit be03727dc1

View File

@ -23,10 +23,11 @@ unit LazUTF8;
interface
uses
{$IFDEF UTF8_RTL}
{$ifdef unix}
cwstring, // UTF8 RTL on Unix requires this. Must be used although it pulls in clib.
// WideCompare* functions on Unix requires this. Must be used although it pulls in clib.
cwstring,
{$endif}
{$IFDEF UTF8_RTL}
FPCAdds,
{$ENDIF}
{$ifdef windows}