diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-01-18 17:02:55 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-01-18 17:02:55 +0200 |
commit | 63e8aeb21390c63eded616ebef7e357294455f47 (patch) | |
tree | acedb6bc695461ecdad619bd02743c4448f1e850 /examples/apps/ide | |
parent | 84c249dabfd4f54be7a3404a4e82a810da0d2db3 (diff) | |
download | fpGUI-63e8aeb21390c63eded616ebef7e357294455f47.tar.xz |
ide: removed the duplicate button from the UI.
I have no idea how that got there. :-)
Diffstat (limited to 'examples/apps/ide')
-rw-r--r-- | examples/apps/ide/src/frm_projectoptions.pas | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/apps/ide/src/frm_projectoptions.pas b/examples/apps/ide/src/frm_projectoptions.pas index 7ece019d..0b991ed6 100644 --- a/examples/apps/ide/src/frm_projectoptions.pas +++ b/examples/apps/ide/src/frm_projectoptions.pas @@ -34,7 +34,6 @@ type CheckBox1: TfpgCheckBox; Label6: TfpgLabel; cbDefaultMakeCol: TfpgComboBox; - Button1: TfpgButton; pcCompiler: TfpgPageControl; TabSheet1: TfpgTabSheet; TabSheet2: TfpgTabSheet; @@ -87,7 +86,6 @@ type procedure CleanupCompilerMakeOptionsGrid; procedure CleanupCompilerDirs; procedure SaveToMacroList(AList: TIDEMacroList); - public constructor Create(AOwner: TComponent); override; destructor Destroy; override; @@ -797,19 +795,6 @@ begin FocusItem := 0; end; - Button1 := TfpgButton.Create(tsCompiler); - with Button1 do - begin - Name := 'Button1'; - SetPosition(148, 290, 144, 24); - Anchors := [anLeft,anBottom]; - Text := 'Show command line'; - FontDesc := '#Label1'; - Hint := ''; - ImageName := ''; - TabOrder := 14; - end; - pcCompiler := TfpgPageControl.Create(tsCompiler); with pcCompiler do begin |