summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2013-11-18 23:57:47 +0100
committerXisco Fauli <anistenis@gmail.com>2013-11-19 00:01:41 +0100
commitef089191076493d89e033cbbebd7f0dda92f6abe (patch)
tree12eb02c0f78a93eb3ba3d4002e1b9ca210c9f97d /wizards
parent732dd223ca52212ac63626526f92384ed11adc54 (diff)
fdo#68788: Don't use systemPathToFileUrl here
it works on Linux but not on Windows. Change-Id: Ia9af362c09d46c678fa4ebe8cf4922dae3dddccf
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()