[Libreoffice-commits] .: qadevOOo/runner

Julien Nabet serval2412 at kemper.freedesktop.org
Tue May 3 14:05:37 PDT 2011


 qadevOOo/runner/helper/URLHelper.java |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit a2e1469555348896389ab21194d4b7680abc37eb
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Tue May 3 23:05:18 2011 +0200

    Change <file>.toURL() to <file>.toURI().toURL()

diff --git a/qadevOOo/runner/helper/URLHelper.java b/qadevOOo/runner/helper/URLHelper.java
index 587d7de..442623b 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 )
         {


More information about the Libreoffice-commits mailing list