1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

bin container has both so and exe

This commit is contained in:
David Inglis 2004-04-06 20:42:31 +00:00
parent bb6839f982
commit c366011c66

View file

@ -421,7 +421,7 @@ public class BaseCElementContentProvider implements ITreeContentProvider {
for (int i = 0; i < celements.length; i++) { for (int i = 0; i < celements.length; i++) {
if (celements[i] instanceof IBinary) { if (celements[i] instanceof IBinary) {
IBinary bin = (IBinary)celements[i]; IBinary bin = (IBinary)celements[i];
if (bin.isExecutable()) { if (bin.isExecutable() || bin.isSharedLib()) {
list.add(bin); list.add(bin);
} }
} }