mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-10 01:35:39 +02:00
only set input object if it's non-null. For dstore import cert dialog, the input is already set prior to the dialog coming up.
This commit is contained in:
parent
6923ea332f
commit
7c41349015
1 changed files with 2 additions and 1 deletions
|
@ -75,7 +75,8 @@ public class SystemWizardDialog extends WizardDialog implements ISystemPromptDia
|
|||
super(shell, wizard);
|
||||
if (wizard instanceof ISystemWizard) {
|
||||
((ISystemWizard)wizard).setSystemWizardDialog(this);
|
||||
setInputObject(inputObject);
|
||||
if (inputObject != null)
|
||||
setInputObject(inputObject);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue