summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2011-05-03 23:05:18 +0200
committerJulien Nabet <serval2412@yahoo.fr>2011-05-03 23:05:18 +0200
commita24895b3d115b4870df054db217d2de5fb1bb107 (patch)
treecb0e6eb33ba43ae8bff5ca9cf3fde087abc53c79 /qadevOOo
parente0b7427600076c694b31cc2101565b9db14f1c5c (diff)
Change <file>.toURL() to <file>.toURI().toURL()
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/runner/helper/URLHelper.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/qadevOOo/runner/helper/URLHelper.java b/qadevOOo/runner/helper/URLHelper.java
index 39bff1485747..d003ab6ef752 100644
--- a/qadevOOo/runner/helper/URLHelper.java
+++ b/qadevOOo/runner/helper/URLHelper.java
@@ -68,8 +68,7 @@ public class URLHelper
String sFileURL = null;
try
{
- //sFileURL = aSystemPath.toURI().toURL().toString();
- sFileURL = aSystemPath.toURL().toString();
+ sFileURL = aSystemPath.toURI().toURL().toString();
}
catch( MalformedURLException exWrong )
{