DBG: Ensure watches work, after changing project (if debugger already instantiated)

git-svn-id: trunk@28735 -
This commit is contained in:
martin 2010-12-17 01:40:07 +00:00
parent a52df4f32a
commit 8e4d321718

View File

@ -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;