mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-06 03:10:39 +01:00
+ SetTBreak method added
git-svn-id: trunk@15890 -
This commit is contained in:
parent
7d5e69ee14
commit
18bd6a344d
@ -58,6 +58,7 @@ type
|
||||
{$endif SUPPORT_REMOTE}
|
||||
constructor Init;
|
||||
procedure SetExe(const exefn:string);
|
||||
procedure SetTBreak(tbreakstring : string);
|
||||
procedure SetWidth(AWidth : longint);
|
||||
procedure SetSourceDirs;
|
||||
destructor Done;
|
||||
@ -683,6 +684,13 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
procedure TDebugController.SetTBreak(tbreakstring : string);
|
||||
begin
|
||||
Command('tbreak '+tbreakstring);
|
||||
TBreakNumber:=Last_breakpoint_number;
|
||||
end;
|
||||
|
||||
procedure TDebugController.SetWidth(AWidth : longint);
|
||||
begin
|
||||
WindowWidth:=AWidth;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user