1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-02 22:55:26 +02:00
David Inglis 2004-06-21 17:52:18 +00:00
parent 515919579d
commit 889a492487

View file

@ -549,6 +549,9 @@ public class CPathIncludeSymbolEntryPage extends CPathBasePage {
}
private boolean canMove(List selected) {
if (selected.size() == 0) {
return false;
}
for (int i = 0; i < selected.size(); i++) {
Object element = selected.get(i);
if (! (element instanceof CPElement))