1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-05 23:35:48 +02:00

[267061] resource dialog/form to allow custom host combo label

-need to check for null combo
This commit is contained in:
David McKnight 2009-03-04 18:44:03 +00:00
parent 84ce2fdee3
commit de50921532

View file

@ -649,7 +649,9 @@ public class SystemResourceSelectionForm implements ISelectionChangedListener
*/ */
public void setConnectionComboLabel(String label) public void setConnectionComboLabel(String label)
{ {
_connectionCombo.setLabel(label); if (_connectionCombo != null){
_connectionCombo.setLabel(label);
}
} }
} }