add GDB to the info box

This commit is contained in:
Basile Burg 2016-09-22 15:33:57 +02:00
parent 095125a32b
commit c38ffa76f0
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
1 changed files with 7 additions and 0 deletions

View File

@ -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;