moved FDebugger field from BaseDebugManager to DebugManager

git-svn-id: trunk@6049 -
This commit is contained in:
vincents 2004-09-23 07:45:53 +00:00
parent 55ead40b81
commit 5d937c489c
2 changed files with 7 additions and 1 deletions

View File

@ -57,7 +57,6 @@ type
function GetDebuggerClass(const AIndex: Integer): TDebuggerClass;
protected
FDestroying: boolean;
FDebugger: TDebugger;
FCallStack: TIDECallStack;
FExceptions: TIDEExceptions;
FSignals: TIDESignals;
@ -170,6 +169,9 @@ end.
{ =============================================================================
$Log$
Revision 1.22 2004/09/23 07:45:53 vincents
moved FDebugger field from BaseDebugManager to DebugManager
Revision 1.21 2004/09/04 21:54:08 marc
+ Added option to skip compiler step on compile, build or run
* Fixed adding of runtime watches

View File

@ -84,6 +84,7 @@ type
function DebuggerDlgGetFullFilename(Sender: TDebuggerDlg;
var Filename: string; AskUserIfNotFound: boolean): TModalresult;
private
FDebugger: TDebugger;
FBreakPointGroups: TIDEBreakPointGroups;
FDialogs: array[TDebugDialogType] of TDebuggerDlg;
@ -1893,6 +1894,9 @@ end.
{ =============================================================================
$Log$
Revision 1.74 2004/09/23 07:45:53 vincents
moved FDebugger field from BaseDebugManager to DebugManager
Revision 1.73 2004/09/17 20:04:34 vincents
replaced writeln by DebugLn