Ignore:
Timestamp:
Apr 17, 2019, 10:42:18 AM (5 years ago)
Author:
chronos
Message:
  • Modified: Updated Graphics32 library.
Location:
GraphicTest/Packages/Graphics32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GraphicTest/Packages/Graphics32

    • Property svn:ignore set to
      lib
  • GraphicTest/Packages/Graphics32/GR32_XPThemes.pas

    r450 r522  
    229229constructor TThemeNexus.Create;
    230230begin
    231   FWindowHandle := Classes.AllocateHWnd(WndProc);
     231  FWindowHandle := {$IFDEF FPC}Classes.{$ENDIF}AllocateHWnd(WndProc);
    232232  OpenVisualStyles;
    233233end;
     
    236236begin
    237237  CloseVisualStyles;
    238   Classes.DeallocateHWnd(FWindowHandle);
     238  {$IFDEF FPC}Classes.{$ENDIF}DeallocateHWnd(FWindowHandle);
    239239  inherited;
    240240end;
Note: See TracChangeset for help on using the changeset viewer.