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

Legend:

Unmodified
Added
Removed
  • GraphicTest/Packages/bgracontrols/bgrapanel.pas

    r452 r573  
    244244procedure TBGRAPanel.FontChanged(Sender: TObject);
    245245begin
    246   inherited FontChanged(Sender);
     246  inherited;
    247247  Changed;
    248248  Invalidate;
     
    344344procedure TBGRAPanel.Resize;
    345345begin
    346   inherited Resize;
     346  inherited;
    347347  if FBGRA <> nil then
    348348    PrepareBGRA;
    349349end;
    350350
    351 procedure TBGRAPanel.SetEnabled(Value: boolean);
    352 begin
    353   inherited SetEnabled(Value);
     351procedure TBGRAPanel.SetEnabled(Value: Boolean);
     352begin
     353  inherited;
    354354  Changed;
    355355end;
Note: See TracChangeset for help on using the changeset viewer.