mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-25 17:29:07 +02:00
Debugger: fix missing inherited call / for TRefCountedObject
git-svn-id: trunk@64885 -
This commit is contained in:
parent
4b10871614
commit
f2db095c73
@ -2170,6 +2170,7 @@ end;
|
||||
|
||||
constructor TDebuggerUnitInfo.Create(const AFileName: String; const AFullFileName: String);
|
||||
begin
|
||||
inherited Create;
|
||||
FFileName := AFileName;
|
||||
FDbgFullName := TrimFilename(AFullFileName);
|
||||
FLocationType := dltUnknown;
|
||||
@ -2178,6 +2179,7 @@ end;
|
||||
constructor TDebuggerUnitInfo.Create(const AUnitName, AClassName,
|
||||
AFunctionName, AFunctionArgs: String);
|
||||
begin
|
||||
inherited Create;
|
||||
include(FFlags, dlfSearchByFunctionName);
|
||||
FUnitName := AUnitName;
|
||||
FSrcClassName := AClassName;
|
||||
@ -2315,6 +2317,7 @@ end;
|
||||
|
||||
constructor TSnapshot.Create(ASnapMgr: TSnapshotManager);
|
||||
begin
|
||||
inherited Create;
|
||||
FTimeStamp := Now;
|
||||
FSnapMgr := ASnapMgr;
|
||||
AddReference;
|
||||
|
Loading…
Reference in New Issue
Block a user