Changeset 111 for trunk/UTarget.pas


Ignore:
Timestamp:
May 12, 2019, 10:04:21 PM (5 years ago)
Author:
chronos
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UTarget.pas

    r108 r111  
    66
    77uses
    8   Classes, SysUtils, StrUtils, Registry, URegistry, SpecializedList, Dialogs,
     8  Classes, SysUtils, StrUtils, Registry, URegistry, fgl, Dialogs,
    99  FileUtil, Process, Menus, LazFileUtils;
    1010
     
    2828  { TDebugStepList }
    2929
    30   TDebugStepList = class(TListObject)
     30  TDebugStepList = class(TFPGObjectList<TDebugStep>)
    3131    function SearchBySourcePos(Pos: Integer): TDebugStep;
    3232    function SearchByTargetPos(Pos: Integer): TDebugStep;
     
    4242  { TBreakPointList }
    4343
    44   TBreakPointList = class(TListObject)
     44  TBreakPointList = class(TFPGObjectList<TBreakPoint>)
    4545    procedure AddItem(TargetAddress: Integer);
    4646    procedure SetSystem(TargetAddress: Integer);
     
    5757  { TMessageList }
    5858
    59   TMessageList = class(TListObject)
     59  TMessageList = class(TFPGObjectList<TMessage>)
    6060  private
    6161    FOnChange: TNotifyEvent;
     
    133133  { TTargetList }
    134134
    135   TTargetList = class(TListObject)
     135  TTargetList = class(TFPGObjectList<TTarget>)
    136136    procedure LoadFromRegistry(Context: TRegistryContext);
    137137    procedure SaveToRegistry(Context: TRegistryContext);
Note: See TracChangeset for help on using the changeset viewer.