mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Bug #201604 "Available tools" problem and enhauncements
Additional check to filter out abstract tools.
This commit is contained in:
parent
f71f0d74ca
commit
99cf14ce66
1 changed files with 1 additions and 0 deletions
|
@ -186,6 +186,7 @@ public class ToolChainEditTab extends AbstractCBuildPropertyTab {
|
|||
cnt = 0;
|
||||
for (int i=0; i<r_tools.length; i++) {
|
||||
if (r_tools[i].isSystemObject()) continue;
|
||||
if (r_tools[i].isAbstract()) continue;
|
||||
v_tools[cnt++] = r_tools[i];
|
||||
}
|
||||
ITool[] tmp = new ITool[cnt];
|
||||
|
|
Loading…
Add table
Reference in a new issue