mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-13 10:29:17 +02:00
+ unicode fix in TDesktop.InitBackground
git-svn-id: branches/unicodekvm@48648 -
This commit is contained in:
parent
6c0491f7c2
commit
8dc55d8294
@ -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 }
|
||||
|
Loading…
Reference in New Issue
Block a user