summaryrefslogtreecommitdiff
path: root/wizards
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-21 11:50:44 +0100
commita4d76f1195ea59f3eb29e87e0b6ffd4954ba908c (patch)
treedd653aa55c8e4609555422bfbbbe4be329d30e86 /wizards
parente3af01e66ee3c88834f03775a0891311c3c3101a (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>
Diffstat (limited to 'wizards')
-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()