diff --git a/debugger/breakpointsdlg.pp b/debugger/breakpointsdlg.pp index 3da696065e..3edd3d9554 100644 --- a/debugger/breakpointsdlg.pp +++ b/debugger/breakpointsdlg.pp @@ -214,7 +214,7 @@ begin if ADebugger <> Debugger then begin if Debugger <> nil - then begin + then begin Debugger.Breakpoints.RemoveNotification(FBreakpointsNotification); end; inherited; @@ -272,6 +272,12 @@ end. { ============================================================================= $Log$ + Revision 1.10 2003/05/22 23:08:19 marc + MWE: = Moved and renamed debuggerforms so that they can be + modified by the ide + + Added some parsing to evaluate complex expressions + not understood by the debugger + Revision 1.9 2003/05/18 10:42:57 mattias implemented deleting empty submenus diff --git a/debugger/debugger.pp b/debugger/debugger.pp index 498d8254bd..d15b065c75 100644 --- a/debugger/debugger.pp +++ b/debugger/debugger.pp @@ -522,6 +522,7 @@ type constructor Create(const AExternalDebugger: String); {virtual; Virtual constructor makes no sense} //MWE: there will be a day that they do make sense :-) // MG: there will be a day that they do make troubles :) + //MWE: do they ? destructor Destroy; override; procedure Init; virtual; // Initializes the debugger @@ -2032,6 +2033,12 @@ end; end. { ============================================================================= $Log$ + Revision 1.22 2003/05/22 23:08:19 marc + MWE: = Moved and renamed debuggerforms so that they can be + modified by the ide + + Added some parsing to evaluate complex expressions + not understood by the debugger + Revision 1.21 2003/05/22 17:06:49 mattias implemented InitialEnabled for breakpoints and watches