mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 10:18:05 +02:00
DBG: Ensure watches work, after changing project (if debugger already instantiated)
git-svn-id: trunk@28735 -
This commit is contained in:
parent
a52df4f32a
commit
8e4d321718
@ -3610,6 +3610,7 @@ end;
|
||||
|
||||
function TIDEWatches.Add(const AExpression: String): TIDEWatch;
|
||||
begin
|
||||
// if this is modified, then also update LoadFromXMLConfig
|
||||
Result := TIDEWatch(inherited Add(AExpression));
|
||||
NotifyAdd(Result);
|
||||
end;
|
||||
@ -3659,8 +3660,10 @@ begin
|
||||
NewCount := AConfig.GetValue(APath + 'Count', 0);
|
||||
for i := 0 to NewCount-1 do
|
||||
begin
|
||||
// Call inherited Add, so NotifyAdd can be send, after the Watch was loaded
|
||||
Watch := TIDEWatch(inherited Add(''));
|
||||
Watch.LoadFromXMLConfig(AConfig, Format('%sItem%d/', [APath, i + 1]));
|
||||
NotifyAdd(Watch);
|
||||
end;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user