summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2013-11-18 23:57:47 +0100
committerAndras Timar <andras.timar@collabora.com>2013-11-19 12:19:22 +0100
commitebfc786cc673fe2624a4710ecab838dc2f84a252 (patch)
tree3ae8cc186a9f8a561592c10a14f9678156b4c474
parente0d9d5bb52ff1f2fc3efcc204ccb0e1c524182ed (diff)
fdo#68788: Don't use systemPathToFileUrl here
it works on Linux but not on Windows. Change-Id: Ia9af362c09d46c678fa4ebe8cf4922dae3dddccf Signed-off-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r--wizards/com/sun/star/wizards/document/OfficeDocument.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/com/sun/star/wizards/document/OfficeDocument.py b/wizards/com/sun/star/wizards/document/OfficeDocument.py
index eb6fb0a52736..35d3183cf57c 100644
--- a/wizards/com/sun/star/wizards/document/OfficeDocument.py
+++ b/wizards/com/sun/star/wizards/document/OfficeDocument.py
@@ -105,7 +105,7 @@ class OfficeDocument(object):
xComponent = None
try:
xComponent = frame.loadComponentFromURL(
- systemPathToFileUrl(sURL), "_self", 0, tuple(loadValues))
+ sURL, "_self", 0, tuple(loadValues))
except Exception:
traceback.print_exc()