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