# HG changeset patch # User dadubrow # Date 1250008559 18000 # Node ID 068dfaa49bcc3c5d138e913260e2575c2b2ea253 # Parent 154ecf9c91861f382d4b7bc3a0e263d3b6ae8144 avoid possible NPE when closing connection wizard diff -r 154ecf9c9186 -r 068dfaa49bcc connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/AbstractConnectedService.java --- a/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/AbstractConnectedService.java Tue Aug 11 10:31:32 2009 -0500 +++ b/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/AbstractConnectedService.java Tue Aug 11 11:35:59 2009 -0500 @@ -26,6 +26,7 @@ import org.eclipse.core.runtime.NullProgressMonitor; import org.eclipse.jface.operation.IRunnableContext; import org.eclipse.jface.operation.IRunnableWithProgress; +import org.eclipse.jface.wizard.WizardDialog; import org.eclipse.swt.widgets.Display; import java.lang.reflect.InvocationTargetException; @@ -178,7 +179,7 @@ return; final TestResult result[] = { null }; - if (runnableContext != null) { + if (runnableContext != null && (!(runnableContext instanceof WizardDialog) || ((WizardDialog) runnableContext).getShell() != null)) { Display.getDefault().syncExec(new Runnable() { public void run() { try {