mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 13:05:22 +02:00
Fix NPE when working with both default and delegate wizards
This commit is contained in:
parent
ffbaae2bf1
commit
25a6c26d74
1 changed files with 1 additions and 1 deletions
|
@ -551,7 +551,7 @@ public class RSEDefaultNewConnectionWizardDelegate extends RSENewConnectionWizar
|
||||||
public void systemTypeChanged(IRSESystemType systemType) {
|
public void systemTypeChanged(IRSESystemType systemType) {
|
||||||
setSystemType(systemType);
|
setSystemType(systemType);
|
||||||
restrictSystemType(systemType.getName());
|
restrictSystemType(systemType.getName());
|
||||||
mainPage.setTitle(getPageTitle());
|
getMainPage().setTitle(getPageTitle());
|
||||||
subsystemFactorySuppliedWizardPages = getAdditionalWizardPages(systemType.getName());
|
subsystemFactorySuppliedWizardPages = getAdditionalWizardPages(systemType.getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue