1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

[192725] Kevin's patch for Deleting Files doesn't remove them from Search view

This commit is contained in:
David McKnight 2007-07-16 18:00:12 +00:00
parent 9ca712e072
commit 34bad9791d

View file

@ -146,6 +146,15 @@ public class SystemSearchTableView extends SystemTableTreeView
}
}
}
// If the deleted object is part of an archive it might be
// visible in the search view, but not part of the result set
Widget widget = findItem(dchild);
if (widget != null)
{
Object data = widget.getData();
remove(data);
}
}
}