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:
parent
84ce2fdee3
commit
de50921532
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue