summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-01-14 17:27:26 +0100
committerNoel Power <noel.power@suse.com>2013-01-14 17:25:58 +0000
commit959ce73b266d3639ff1ced9cb980adf5fe643ad5 (patch)
tree4a6e5b7030dcae8a9b8d45219a1031e52f97b538
parentAdd missing parenthesis (diff)
downloadcore-959ce73b266d3639ff1ced9cb980adf5fe643ad5.tar.gz
core-959ce73b266d3639ff1ced9cb980adf5fe643ad5.zip
fdo#59366: Document Conversion wizard: enable "StarOffice" again:
The createBF_MigrateFilterIfPossible function does not actually return its intended return value, so the dialog never shows the "StarOffice" button. (regression from f3e40273b699910108007faf8a7991fe0498ad97) Change-Id: I8a72a4e16b23ffda01caf3207127de628afc4036 Reviewed-on: https://gerrit.libreoffice.org/1677 Reviewed-by: Noel Power <noel.power@suse.com> Tested-by: Noel Power <noel.power@suse.com>
-rw-r--r--wizards/source/importwizard/Main.xba2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/source/importwizard/Main.xba b/wizards/source/importwizard/Main.xba
index 7385c6bc8c96..fdea2f9ce432 100644
--- a/wizards/source/importwizard/Main.xba
+++ b/wizards/source/importwizard/Main.xba
@@ -190,7 +190,7 @@ Function createBF_MigrateFilterIfPossible()
Dim oService
On Error Goto RTError
oService = createUnoService(&quot;com.sun.star.comp.office.BF_MigrateFilter&quot;)
- getBinFilterCompIfItExists = oService
+ createBF_MigrateFilterIfPossible = oService
Exit Function
RTError:
createBF_MigrateFilterIfPossible = Nothing