# HG changeset patch # User Eugene Ostroukhov # Date 1265765700 28800 # Node ID 71bbda100c421065e8aa252df99a662af2d8ebe9 # Parent f863958d299dcecdf975c5f7cde1f6564a91104d Mozilla startup when there is space character in path is fixed diff -r f863958d299d -r 71bbda100c42 org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/MozillaPreviewPage.java --- a/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/MozillaPreviewPage.java Tue Feb 09 16:55:26 2010 -0800 +++ b/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/MozillaPreviewPage.java Tue Feb 09 17:35:00 2010 -0800 @@ -2,7 +2,6 @@ import java.io.File; import java.io.IOException; -import java.net.URISyntaxException; import java.net.URL; import org.eclipse.core.net.proxy.IProxyData; @@ -40,13 +39,11 @@ if (resourceUrl != null) { try { URL fileUrl = FileLocator.toFileURL(resourceUrl); - File file = new File(fileUrl.toURI()); + File file = new File(fileUrl.getPath()); System.setProperty(XUL_RUNNER_PATH_PARAMETER, file .getAbsolutePath()); //$NON-NLS-1$ } catch (IOException e) { - // log the exception - } catch (URISyntaxException e) { - // log the exception + PreviewerPlugin.log(e); } } }