Changeset 111 for trunk/UTarget.pas
- Timestamp:
- May 12, 2019, 10:04:21 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UTarget.pas
r108 r111 6 6 7 7 uses 8 Classes, SysUtils, StrUtils, Registry, URegistry, SpecializedList, Dialogs,8 Classes, SysUtils, StrUtils, Registry, URegistry, fgl, Dialogs, 9 9 FileUtil, Process, Menus, LazFileUtils; 10 10 … … 28 28 { TDebugStepList } 29 29 30 TDebugStepList = class(T ListObject)30 TDebugStepList = class(TFPGObjectList<TDebugStep>) 31 31 function SearchBySourcePos(Pos: Integer): TDebugStep; 32 32 function SearchByTargetPos(Pos: Integer): TDebugStep; … … 42 42 { TBreakPointList } 43 43 44 TBreakPointList = class(T ListObject)44 TBreakPointList = class(TFPGObjectList<TBreakPoint>) 45 45 procedure AddItem(TargetAddress: Integer); 46 46 procedure SetSystem(TargetAddress: Integer); … … 57 57 { TMessageList } 58 58 59 TMessageList = class(T ListObject)59 TMessageList = class(TFPGObjectList<TMessage>) 60 60 private 61 61 FOnChange: TNotifyEvent; … … 133 133 { TTargetList } 134 134 135 TTargetList = class(T ListObject)135 TTargetList = class(TFPGObjectList<TTarget>) 136 136 procedure LoadFromRegistry(Context: TRegistryContext); 137 137 procedure SaveToRegistry(Context: TRegistryContext);
Note:
See TracChangeset
for help on using the changeset viewer.