1
0
Fork 0
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:
David McKnight 2007-05-07 16:43:36 +00:00
parent 6923ea332f
commit 7c41349015

View file

@ -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);
}
}