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/MethodMove.pas

    r572 r573  
    1 unit UMethodMove;
    2 
    3 {$mode delphi}
     1unit MethodMove;
    42
    53interface
    64
    75uses
    8   LCLIntf, LCLType, Classes, SysUtils, UDrawMethod, UFastBitmap, Controls, Graphics;
     6  LCLIntf, LCLType, Classes, SysUtils, DrawMethod, FastBitmap, Controls, Graphics;
    97
    108type
     
    2725constructor TMethodMove.Create;
    2826begin
    29   inherited Create;
     27  inherited;
    3028  FastBitmap2 := TFastBitmap.Create;
    3129  Caption := 'Move';
     
    3735begin
    3836  FreeAndNil(FastBitmap2);
    39   inherited Destroy;
     37  inherited;
    4038end;
    4139
     
    4947procedure TMethodMove.UpdateSettings;
    5048begin
    51   inherited UpdateSettings;
     49  inherited;
    5250end;
    5351
     
    6058end;
    6159
    62 
    6360end.
    6461
Note: See TracChangeset for help on using the changeset viewer.