Changeset 172 for trunk/Target.pas


Ignore:
Timestamp:
Aug 20, 2024, 8:58:56 PM (5 weeks ago)
Author:
chronos
Message:
  • Modified: Updated flatpak.
  • Modified: fgl unit usage replaced by Generics.Collections.
  • Modified: Updated snap file.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Target.pas

    r164 r172  
    44
    55uses
    6   Classes, SysUtils, StrUtils, Registry, RegistryEx, fgl, Dialogs,
    7   FileUtil, Process, Menus, LazFileUtils;
     6  Classes, SysUtils, StrUtils, Registry, RegistryEx, Generics.Collections,
     7  Dialogs, FileUtil, Process, Menus, LazFileUtils;
    88
    99type
     
    2727  { TDebugSteps }
    2828
    29   TDebugSteps = class(TFPGObjectList<TDebugStep>)
     29  TDebugSteps = class(TObjectList<TDebugStep>)
    3030    function SearchBySourcePos(Pos: Integer): TDebugStep;
    3131    function SearchByProgramPos(Pos: Integer): TDebugStep;
     
    4444  { TBreakPoints }
    4545
    46   TBreakPoints = class(TFPGObjectList<TBreakPoint>)
     46  TBreakPoints = class(TObjectList<TBreakPoint>)
    4747    procedure AddItem(TargetAddress: Integer);
    4848    procedure SetSystem(TargetAddress: Integer);
     
    5959  { TMessages }
    6060
    61   TMessages = class(TFPGObjectList<TMessage>)
     61  TMessages = class(TObjectList<TMessage>)
    6262  private
    6363    FOnChange: TNotifyEvent;
     
    148148  { TTargets }
    149149
    150   TTargets = class(TFPGObjectList<TTarget>)
     150  TTargets = class(TObjectList<TTarget>)
    151151    procedure LoadFromRegistry(Context: TRegistryContext);
    152152    procedure SaveToRegistry(Context: TRegistryContext);
Note: See TracChangeset for help on using the changeset viewer.