From c38ffa76f046c7fdd1ceee1c18266a9945a5dc61 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Thu, 22 Sep 2016 15:33:57 +0200 Subject: [PATCH] add GDB to the info box --- src/ce_infos.pas | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/ce_infos.pas b/src/ce_infos.pas index ad37bfa4..ac63596b 100644 --- a/src/ce_infos.pas +++ b/src/ce_infos.pas @@ -197,6 +197,12 @@ begin free; end; // + {$IFDEF UNIX} + itm := TToolInfo.Construct(self, tikOptional, 'gdb', + 'optional, the GNU debugger'); + itm.Parent := boxTools; + itm.ReAlign; + {$ENDIF} itm := TToolInfo.Construct(self, tikOptional, 'dscanner', 'optional, the D source code analyzer'); itm.Parent := boxTools; @@ -244,6 +250,7 @@ begin itm.Parent := boxTools; itm.ReAlign; // + Height := boxTools.ControlCount * 30 + 150; Realign; end;