mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-28 23:25:56 +02:00
GdbmiDebugger: fix missing inherited call / for TRefCountedObject
git-svn-id: trunk@64884 -
This commit is contained in:
parent
a6b862f417
commit
4b10871614
@ -12757,6 +12757,7 @@ end;
|
||||
|
||||
constructor TGDBMIDebuggerCommand.Create(AOwner: TGDBMIDebuggerBase);
|
||||
begin
|
||||
inherited Create;
|
||||
FQueueRunLevel := -1;
|
||||
FState := dcsNone;
|
||||
FTheDebugger := AOwner;
|
||||
|
@ -521,6 +521,7 @@ end;
|
||||
constructor TGDBInstruction.Create(ACommand: String; AFlags: TGDBInstructionFlags;
|
||||
ATimeOut: Integer = 0);
|
||||
begin
|
||||
inherited Create;
|
||||
InternalCreate(ACommand, -1, -1, AFlags, ATimeOut);
|
||||
Init;
|
||||
end;
|
||||
@ -528,6 +529,7 @@ end;
|
||||
constructor TGDBInstruction.Create(ACommand: String; AThread: Integer;
|
||||
AOtherFlags: TGDBInstructionFlags; ATimeOut: Integer = 0);
|
||||
begin
|
||||
inherited Create;
|
||||
InternalCreate(ACommand, AThread, -1,
|
||||
AOtherFlags + [ifRequiresThread], ATimeOut);
|
||||
Init;
|
||||
@ -536,6 +538,7 @@ end;
|
||||
constructor TGDBInstruction.Create(ACommand: String; AThread, AFrame: Integer;
|
||||
AOtherFlags: TGDBInstructionFlags; ATimeOut: Integer = 0);
|
||||
begin
|
||||
inherited Create;
|
||||
InternalCreate(ACommand, AThread, AFrame,
|
||||
AOtherFlags + [ifRequiresThread, ifRequiresStackFrame], ATimeOut);
|
||||
Init;
|
||||
|
Loading…
Reference in New Issue
Block a user