From e7f44fc129912c4f033ab99be7d42393fd040129 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Mon, 23 Nov 2020 02:47:06 +0100 Subject: [PATCH] fix #74 - ddemangle listed as required tool but not used anymore --- CHANGELOG.md | 1 + src/u_infos.pas | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0887270..4a39c6ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ See [LDC announcement](https://forum.dlang.org/post/ssvxmrdpklhsrqlgrzas@forum.d ## Bugs fixed +- About box, ddemangle was listed as a required tool but it is not anymore. (#74) - Messages, when selected, the recently added _Search Results_ category could not be emptied. - Highlighter, `q"()"`, `q"[]"`, `q"<>"`, `q"{}>"` strings highlighting was broken. - HTML export, the dialog proposed to open a file, not to save one. diff --git a/src/u_infos.pas b/src/u_infos.pas index 22886b07..4a5d573c 100644 --- a/src/u_infos.pas +++ b/src/u_infos.pas @@ -247,10 +247,6 @@ begin 'optional, the LDC D compiler, setup in "Options - Compilers paths"'); itm.Parent := boxTools; itm.ReAlign; - itm := TToolInfo.Construct(self, tikFindable, 'ddemangle', - 'optional, allows to demangle the symbols in the message widget'); - itm.Parent := boxTools; - itm.ReAlign; itm := TToolInfo.Construct(self, tikRunning, 'dcd-server', 'mandatory, provides IDE-grade features such as the completion'); itm.Parent := boxTools;