mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 17:18:17 +02:00
Debugger: Fix DbgThread.TopFrame after copy
git-svn-id: trunk@64015 -
This commit is contained in:
parent
ad65618c2b
commit
8f0ae93c99
@ -2515,7 +2515,8 @@ end;
|
||||
procedure TThreadEntry.Assign(AnOther: TThreadEntry);
|
||||
begin
|
||||
FTopFrame.Free;
|
||||
FTopFrame := AnOther.TopFrame.CreateCopy;
|
||||
FTopFrame := CreateStackEntry; // .CreateCopy;
|
||||
FTopFrame.Assign(AnOther.TopFrame);
|
||||
FThreadId := AnOther.FThreadId;
|
||||
FThreadName := AnOther.FThreadName;
|
||||
FThreadState := AnOther.FThreadState;
|
||||
|
@ -1352,7 +1352,6 @@ type
|
||||
function GetUnitInfoProvider: TDebuggerUnitInfoProvider; override;
|
||||
public
|
||||
function CreateCopy: TCallStackEntry; override;
|
||||
procedure Assign(AnOther: TCallStackEntry); override;
|
||||
end;
|
||||
|
||||
{ TThreadEntry }
|
||||
@ -1859,14 +1858,6 @@ begin
|
||||
Result.Assign(Self);
|
||||
end;
|
||||
|
||||
procedure TIdeThreadFrameEntry.Assign(AnOther: TCallStackEntry);
|
||||
begin
|
||||
inherited Assign(AnOther);
|
||||
if AnOther is TIdeThreadFrameEntry then begin
|
||||
FThread := TIdeThreadFrameEntry(AnOther).FThread;
|
||||
end;
|
||||
end;
|
||||
|
||||
{ TIDEBreakPointGroupList }
|
||||
|
||||
function TIDEBreakPointGroupList.GetItem(AIndex: Integer): TIDEBreakPointGroup;
|
||||
|
Loading…
Reference in New Issue
Block a user