1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-02 22:55:26 +02:00

[189264] avoid class cast exception

This commit is contained in:
David McKnight 2007-06-01 19:08:48 +00:00
parent c0212e6a24
commit c0e89262c8

View file

@ -5959,7 +5959,8 @@ public class SystemView extends SafeTreeViewer
findAllRemoteItemReferences(element, element, matches);
for (int i = 0; i < matches.size(); i++) {
internalUpdate((Item)matches.get(i), element, properties);
internalUpdate((Widget)matches.get(i), element, properties);
}
}
}