1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-15 04:05:38 +02:00

bug 330785: NPE opening Build > Environment preference page

This commit is contained in:
Andrew Gvozdev 2010-11-22 15:23:49 +00:00
parent a48572ef30
commit f94168572c

View file

@ -344,7 +344,9 @@ public class EnvironmentTab extends AbstractCPropertyTab {
Collections.sort(data); Collections.sort(data);
tv.setInput(data); tv.setInput(data);
stringListModeControl.updateStringListModeControl(); if (stringListModeControl!=null) {
stringListModeControl.updateStringListModeControl();
}
updateButtons(); updateButtons();
} }