Changeset 86 for trunk/UMenu.pas


Ignore:
Timestamp:
Jun 21, 2022, 5:04:48 PM (23 months ago)
Author:
chronos
Message:
  • Fixed: Calculation of tracks end.
  • Modified: Updated Common package to version 0.10.
  • Modified: Build with Lazarus 2.2.2.
  • Modified: Used Generics.Collections instead of fgl for generic lists.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UMenu.pas

    r77 r86  
    11unit UMenu;
    22
    3 {$mode delphi}
    4 
    53interface
    64
    75uses
    8   Classes, SysUtils, Graphics, Controls, fgl, UControls;
     6  Classes, SysUtils, Graphics, Controls, Generics.Collections, UControls;
    97
    108type
     
    6058  { TMenuItems }
    6159
    62   TMenuItems = class(TFPGObjectList<TMenuItem>)
     60  TMenuItems = class(TObjectList<TMenuItem>)
    6361    function AddButton(Text: string; OnClick: TNotifyEvent): TMenuItemButton;
    6462    function AddCheckBox(Text: string; OnChanged: TNotifyEvent): TMenuItemCheckBox;
Note: See TracChangeset for help on using the changeset viewer.