+ unicode fix in TDesktop.InitBackground

git-svn-id: branches/unicodekvm@48648 -
This commit is contained in:
nickysn 2021-02-10 23:53:02 +00:00
parent 6c0491f7c2
commit 8dc55d8294

View File

@ -525,7 +525,11 @@ END;
{ InitBackGround -> Platforms DOS/DPMI/WIN/NT/OS2 - Updated 12Sep97 LdB }
{---------------------------------------------------------------------------}
PROCEDURE TDesktop.InitBackground;
CONST Ch: Char = #176;
{$ifdef FV_UNICODE}
CONST Ch = #$2591;
{$else FV_UNICODE}
CONST Ch = #176;
{$endif FV_UNICODE}
VAR R: TRect;
BEGIN
GetExtent(R); { Get desktop extents }