Changeset 172 for trunk/Target.pas
- Timestamp:
- Aug 20, 2024, 8:58:56 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Target.pas
r164 r172 4 4 5 5 uses 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; 8 8 9 9 type … … 27 27 { TDebugSteps } 28 28 29 TDebugSteps = class(T FPGObjectList<TDebugStep>)29 TDebugSteps = class(TObjectList<TDebugStep>) 30 30 function SearchBySourcePos(Pos: Integer): TDebugStep; 31 31 function SearchByProgramPos(Pos: Integer): TDebugStep; … … 44 44 { TBreakPoints } 45 45 46 TBreakPoints = class(T FPGObjectList<TBreakPoint>)46 TBreakPoints = class(TObjectList<TBreakPoint>) 47 47 procedure AddItem(TargetAddress: Integer); 48 48 procedure SetSystem(TargetAddress: Integer); … … 59 59 { TMessages } 60 60 61 TMessages = class(T FPGObjectList<TMessage>)61 TMessages = class(TObjectList<TMessage>) 62 62 private 63 63 FOnChange: TNotifyEvent; … … 148 148 { TTargets } 149 149 150 TTargets = class(T FPGObjectList<TTarget>)150 TTargets = class(TObjectList<TTarget>) 151 151 procedure LoadFromRegistry(Context: TRegistryContext); 152 152 procedure SaveToRegistry(Context: TRegistryContext);
Note:
See TracChangeset
for help on using the changeset viewer.