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

git-svn-id: trunk@4173 -
This commit is contained in:
marc 2003-05-22 23:08:19 +00:00
parent ad0d3fe2c2
commit b455d076da
2 changed files with 14 additions and 1 deletions

View File

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

View File

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