Debugger: Options, mark project as modified, when exceptions are enabled/disabled. Issue #0025074

git-svn-id: trunk@42932 -
This commit is contained in:
martin 2013-09-25 12:32:35 +00:00
parent 30f778a891
commit 07ca34b2bc

View File

@ -301,6 +301,7 @@ type
protected
procedure SetIgnoreAll(const AValue: Boolean); override;
procedure Notify(Item: TCollectionItem; Action: TCollectionNotification); override;
procedure Update(Item: TCollectionItem); override;
end;
TDBGEventCategories = set of TDBGEventCategory;
@ -322,6 +323,13 @@ begin
Project1.Modified := True;
end;
procedure TProjectExceptions.Update(Item: TCollectionItem);
begin
inherited Update(Item);
if Project1 <> nil then
Project1.Modified := True;
end;
{ TManagedBreakPoints }
constructor TManagedBreakPoints.Create(const AManager: TDebugManager);