mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-13 11:29:19 +02:00
MWE:
- Removed menucreation from loaded since streaming works git-svn-id: trunk@1721 -
This commit is contained in:
parent
45309abaf7
commit
c5067609de
@ -72,18 +72,10 @@ type
|
|||||||
|
|
||||||
procedure UpdateItem(const AItem: TListItem; const ABreakpoint: TDBGBreakPoint);
|
procedure UpdateItem(const AItem: TListItem; const ABreakpoint: TDBGBreakPoint);
|
||||||
protected
|
protected
|
||||||
procedure Loaded; override;
|
|
||||||
procedure SetDebugger(const ADebugger: TDebugger); override;
|
procedure SetDebugger(const ADebugger: TDebugger); override;
|
||||||
public
|
public
|
||||||
constructor Create(AOwner: TComponent); override;
|
constructor Create(AOwner: TComponent); override;
|
||||||
destructor Destroy; override;
|
destructor Destroy; override;
|
||||||
published
|
|
||||||
// publish some properties until fpcbug #1888 is fixed
|
|
||||||
property Top;
|
|
||||||
property Left;
|
|
||||||
property Width;
|
|
||||||
property Height;
|
|
||||||
property Caption;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
@ -143,23 +135,6 @@ begin
|
|||||||
inherited;
|
inherited;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TBreakPointsDlg.Loaded;
|
|
||||||
begin
|
|
||||||
inherited Loaded;
|
|
||||||
|
|
||||||
// Not yet through resources
|
|
||||||
mnuPopUp.Items.Add(popAdd);
|
|
||||||
popAdd.Add(popAddSourceBP);
|
|
||||||
mnuPopUp.Items.Add(N1);
|
|
||||||
mnuPopUp.Items.Add(popProperties);
|
|
||||||
mnuPopUp.Items.Add(popEnabled);
|
|
||||||
mnuPopUp.Items.Add(popDelete);
|
|
||||||
mnuPopUp.Items.Add(N2);
|
|
||||||
mnuPopUp.Items.Add(popDisableAll);
|
|
||||||
mnuPopUp.Items.Add(popEnableAll);
|
|
||||||
mnuPopUp.Items.Add(popDeleteAll);
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TBreakPointsDlg.lvBreakPointsClick(Sender: TObject);
|
procedure TBreakPointsDlg.lvBreakPointsClick(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
end;
|
end;
|
||||||
@ -285,6 +260,10 @@ end.
|
|||||||
|
|
||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.7 2002/05/30 22:45:57 lazarus
|
||||||
|
MWE:
|
||||||
|
- Removed menucreation from loaded since streaming works
|
||||||
|
|
||||||
Revision 1.6 2002/05/10 06:57:47 lazarus
|
Revision 1.6 2002/05/10 06:57:47 lazarus
|
||||||
MG: updated licenses
|
MG: updated licenses
|
||||||
|
|
||||||
|
@ -51,13 +51,6 @@ type
|
|||||||
public
|
public
|
||||||
procedure AddText(const AText: String);
|
procedure AddText(const AText: String);
|
||||||
procedure Clear;
|
procedure Clear;
|
||||||
published
|
|
||||||
// publish some properties until fpcbug #1888 is fixed
|
|
||||||
property Top;
|
|
||||||
property Left;
|
|
||||||
property Width;
|
|
||||||
property Height;
|
|
||||||
property Caption;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
@ -88,9 +81,6 @@ begin
|
|||||||
|
|
||||||
// Not yet through resources
|
// Not yet through resources
|
||||||
txtOutput.Scrollbars := ssBoth;
|
txtOutput.Scrollbars := ssBoth;
|
||||||
|
|
||||||
// Not yet through resources
|
|
||||||
mnuPopUp.Items.Add(popClear);
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TDbgOutputForm.popClearClick(Sender: TObject);
|
procedure TDbgOutputForm.popClearClick(Sender: TObject);
|
||||||
@ -104,6 +94,10 @@ initialization
|
|||||||
end.
|
end.
|
||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.8 2002/05/30 22:45:57 lazarus
|
||||||
|
MWE:
|
||||||
|
- Removed menucreation from loaded since streaming works
|
||||||
|
|
||||||
Revision 1.7 2002/05/10 07:00:08 lazarus
|
Revision 1.7 2002/05/10 07:00:08 lazarus
|
||||||
MG: fixed typo
|
MG: fixed typo
|
||||||
|
|
||||||
|
@ -72,18 +72,10 @@ type
|
|||||||
|
|
||||||
procedure UpdateItem(const AItem: TListItem; const AWatch: TDBGWatch);
|
procedure UpdateItem(const AItem: TListItem; const AWatch: TDBGWatch);
|
||||||
protected
|
protected
|
||||||
procedure Loaded; override;
|
|
||||||
procedure SetDebugger(const ADebugger: TDebugger); override;
|
procedure SetDebugger(const ADebugger: TDebugger); override;
|
||||||
public
|
public
|
||||||
constructor Create(AOwner: TComponent); override;
|
constructor Create(AOwner: TComponent); override;
|
||||||
destructor Destroy; override;
|
destructor Destroy; override;
|
||||||
published
|
|
||||||
// publish some properties until fpcbug #1888 is fixed
|
|
||||||
property Top;
|
|
||||||
property Left;
|
|
||||||
property Width;
|
|
||||||
property Height;
|
|
||||||
property Caption;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
@ -124,23 +116,6 @@ begin
|
|||||||
else Result := TDBGWatch(Item.Data);
|
else Result := TDBGWatch(Item.Data);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TWatchesDlg.Loaded;
|
|
||||||
begin
|
|
||||||
inherited Loaded;
|
|
||||||
|
|
||||||
// Not yet through resources
|
|
||||||
mnuPopUp.Items.Add(popAdd);
|
|
||||||
mnuPopUp.Items.Add(N1);
|
|
||||||
mnuPopUp.Items.Add(popProperties);
|
|
||||||
mnuPopUp.Items.Add(popEnabled);
|
|
||||||
mnuPopUp.Items.Add(popDelete);
|
|
||||||
mnuPopUp.Items.Add(N2);
|
|
||||||
mnuPopUp.Items.Add(popDisableAll);
|
|
||||||
mnuPopUp.Items.Add(popEnableAll);
|
|
||||||
mnuPopUp.Items.Add(popDeleteAll);
|
|
||||||
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TWatchesDlg.lvWatchesClick(Sender: TObject);
|
procedure TWatchesDlg.lvWatchesClick(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
end;
|
end;
|
||||||
@ -289,6 +264,10 @@ end.
|
|||||||
|
|
||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.4 2002/05/30 22:45:57 lazarus
|
||||||
|
MWE:
|
||||||
|
- Removed menucreation from loaded since streaming works
|
||||||
|
|
||||||
Revision 1.3 2002/05/30 21:53:56 lazarus
|
Revision 1.3 2002/05/30 21:53:56 lazarus
|
||||||
MG: fixed form streaming of not direct TForm descendents
|
MG: fixed form streaming of not direct TForm descendents
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user