Ignore:
Timestamp:
Jun 25, 2024, 10:49:43 AM (6 days ago)
Author:
chronos
Message:
  • Modified: Build with Lazarus 3.4.
  • Modified: Removed U prefix from unit names.
File:
1 moved

Legend:

Unmodified
Added
Removed
  • GraphicTest/Methods/MethodGraphics32.pas

    r572 r573  
    1 unit UMethodGraphics32;
    2 
    3 {$mode delphi}
     1unit MethodGraphics32;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UFastBitmap, UDrawMethod,
     6  Classes, SysUtils, FastBitmap, DrawMethod,
    97  {$IFDEF GRAPHICS32}GR32, GR32_Image,{$ENDIF}
    108  Controls, Graphics;
     
    3129constructor TMethodGraphics32.Create;
    3230begin
    33   inherited Create;
     31  inherited;
    3432  Caption := 'TGR32Image';
    3533  Description.Add('Graphics32 is well implemented highly optimized Delphi graphic ' +
     
    4644destructor TMethodGraphics32.Destroy;
    4745begin
    48   inherited Destroy;
     46  inherited;
    4947end;
    5048
     
    9290begin
    9391  FreeAndNil(Image);
    94   inherited Done;
     92  inherited;
    9593end;
    9694
Note: See TracChangeset for help on using the changeset viewer.