mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-29 02:31:03 +02:00
* Rename of dbgutils and dbgoutputform to avoid future name conflicts
git-svn-id: trunk@18301 -
This commit is contained in:
parent
bb5b3204f0
commit
4ac1841cc0
8
.gitattributes
vendored
8
.gitattributes
vendored
@ -1611,12 +1611,12 @@ debugger/callstackdlg.lfm svneol=native#text/plain
|
|||||||
debugger/callstackdlg.lrs svneol=native#text/pascal
|
debugger/callstackdlg.lrs svneol=native#text/pascal
|
||||||
debugger/callstackdlg.pp svneol=native#text/pascal
|
debugger/callstackdlg.pp svneol=native#text/pascal
|
||||||
debugger/cmdlinedebugger.pp svneol=native#text/pascal
|
debugger/cmdlinedebugger.pp svneol=native#text/pascal
|
||||||
debugger/dbgoutputform.lfm svneol=native#text/plain
|
|
||||||
debugger/dbgoutputform.lrs svneol=native#text/pascal
|
|
||||||
debugger/dbgoutputform.pp svneol=native#text/pascal
|
|
||||||
debugger/dbgutils.pp svneol=native#text/pascal
|
|
||||||
debugger/debugger.pp svneol=native#text/pascal
|
debugger/debugger.pp svneol=native#text/pascal
|
||||||
debugger/debuggerdlg.pp svneol=native#text/pascal
|
debugger/debuggerdlg.pp svneol=native#text/pascal
|
||||||
|
debugger/debugoutputform.lfm svneol=native#text/plain
|
||||||
|
debugger/debugoutputform.lrs svneol=native#text/pascal
|
||||||
|
debugger/debugoutputform.pp svneol=native#text/pascal
|
||||||
|
debugger/debugutils.pp svneol=native#text/pascal
|
||||||
debugger/evaluatedlg.lfm svneol=native#text/plain
|
debugger/evaluatedlg.lfm svneol=native#text/plain
|
||||||
debugger/evaluatedlg.lrs svneol=native#text/pascal
|
debugger/evaluatedlg.lrs svneol=native#text/pascal
|
||||||
debugger/evaluatedlg.pp svneol=native#text/pascal
|
debugger/evaluatedlg.pp svneol=native#text/pascal
|
||||||
|
@ -39,7 +39,7 @@ unit CmdLineDebugger;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, Process, FileUtil, Debugger, LCLProc, Forms, LazConf, DBGUtils;
|
Classes, Process, FileUtil, Debugger, LCLProc, Forms, LazConf, DebugUtils;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ interface
|
|||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, Laz_XMLCfg,
|
Classes, SysUtils, Laz_XMLCfg,
|
||||||
LCLProc, IDEProcs, DBGUtils, maps;
|
LCLProc, IDEProcs, DebugUtils, maps;
|
||||||
|
|
||||||
type
|
type
|
||||||
// datatype pointing to data on the target
|
// datatype pointing to data on the target
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ $Id$ }
|
{ $Id$ }
|
||||||
{ ----------------------------------------
|
{ ------------------------------------------
|
||||||
dbgoutputform.pp - Shows target output
|
debugoutputform.pp - Shows target output
|
||||||
----------------------------------------
|
------------------------------------------
|
||||||
|
|
||||||
@created(Wed Feb 25st WET 2001)
|
@created(Wed Feb 25st WET 2001)
|
||||||
@lastmod($Date$)
|
@lastmod($Date$)
|
||||||
@ -26,7 +26,7 @@
|
|||||||
* *
|
* *
|
||||||
***************************************************************************
|
***************************************************************************
|
||||||
}
|
}
|
||||||
unit DBGOutputForm;
|
unit DebugOutputForm;
|
||||||
|
|
||||||
{$mode objfpc}
|
{$mode objfpc}
|
||||||
{$H+}
|
{$H+}
|
||||||
@ -114,6 +114,6 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
{$I dbgoutputform.lrs}
|
{$I debugoutputform.lrs}
|
||||||
|
|
||||||
end.
|
end.
|
@ -28,7 +28,7 @@
|
|||||||
* *
|
* *
|
||||||
***************************************************************************
|
***************************************************************************
|
||||||
}
|
}
|
||||||
unit DBGUtils;
|
unit DebugUtils;
|
||||||
|
|
||||||
{$mode objfpc}{$H+}
|
{$mode objfpc}{$H+}
|
||||||
|
|
@ -37,7 +37,7 @@ unit GDBMIDebugger;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, LCLProc, Dialogs, LazConf, DBGUtils, Debugger,
|
Classes, SysUtils, LCLProc, Dialogs, LazConf, DebugUtils, Debugger,
|
||||||
FileUtil, CmdLineDebugger, GDBTypeInfo, Maps,
|
FileUtil, CmdLineDebugger, GDBTypeInfo, Maps,
|
||||||
{$IFdef MSWindows}
|
{$IFdef MSWindows}
|
||||||
Windows,
|
Windows,
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
{ $Id: $ }
|
{ $Id$ }
|
||||||
{ ------------------------------------------------
|
{ ------------------------------------------------
|
||||||
ProcessDebugger.pp - Debugger class which only
|
ProcessDebugger.pp - Debugger class which only
|
||||||
executes a target
|
executes a target
|
||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
|
||||||
@created(Sun Nov 27st WET 2005)
|
@created(Sun Nov 27st WET 2005)
|
||||||
@lastmod($Date: $)
|
@lastmod($Date$)
|
||||||
@author(Marc Weustink <marc@@dommelstein.net>)
|
@author(Marc Weustink <marc@@dommelstein.net>)
|
||||||
|
|
||||||
This unit contains the process debugger class. It simply creates a process.
|
This unit contains the process debugger class. It simply creates a process.
|
||||||
@ -38,7 +38,7 @@ unit ProcessDebugger;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, FileUtil, Process, Debugger, LCLProc, DBGUtils,
|
Classes, SysUtils, FileUtil, Process, Debugger, LCLProc, DebugUtils,
|
||||||
BaseDebugManager, Dialogs, ProcessList;
|
BaseDebugManager, Dialogs, ProcessList;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
@ -37,7 +37,7 @@ unit SSHGDBMIDebugger;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, Dialogs, Controls, LazConf, GDBMIDebugger, DBGUtils,
|
Classes, SysUtils, Dialogs, Controls, LazConf, GDBMIDebugger, DebugUtils,
|
||||||
BaseDebugManager, Debugger, PropEdits, Graphics, LCLProc;
|
BaseDebugManager, Debugger, PropEdits, Graphics, LCLProc;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
@ -53,7 +53,7 @@ uses
|
|||||||
MainBar, MainIntf, MainBase, BaseBuildManager,
|
MainBar, MainIntf, MainBase, BaseBuildManager,
|
||||||
SourceMarks,
|
SourceMarks,
|
||||||
DebuggerDlg, Watchesdlg, BreakPointsdlg, BreakPropertyDlg, LocalsDlg, WatchPropertyDlg,
|
DebuggerDlg, Watchesdlg, BreakPointsdlg, BreakPropertyDlg, LocalsDlg, WatchPropertyDlg,
|
||||||
CallStackDlg, EvaluateDlg, RegistersDlg, AssemblerDlg, DBGOutputForm,
|
CallStackDlg, EvaluateDlg, RegistersDlg, AssemblerDlg, DebugOutputForm,
|
||||||
GDBMIDebugger, SSHGDBMIDebugger, ProcessDebugger,
|
GDBMIDebugger, SSHGDBMIDebugger, ProcessDebugger,
|
||||||
BaseDebugManager;
|
BaseDebugManager;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user