diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-23 14:30:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-24 09:57:08 +0200 |
commit | e271fce82e16359394fdeb818c2ec25a07532a8d (patch) | |
tree | 7a02fef73819170e1eab03737b6040c8f3277149 /sc | |
parent | 2855f12072023930a15ea852e40d05de4a6be164 (diff) |
use officecfg to retrieve PrettyPrinting
Change-Id: Ia815acdb8050316293e23801d3ed5bfbeb3ab386
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119417
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xml/xmlwrap.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/xml/xmlwrap.cxx b/sc/source/filter/xml/xmlwrap.cxx index 557099bfae1c..cb92ebab0ce5 100644 --- a/sc/source/filter/xml/xmlwrap.cxx +++ b/sc/source/filter/xml/xmlwrap.cxx @@ -17,6 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <officecfg/Office/Common.hxx> #include <vcl/errinf.hxx> #include <sfx2/docfile.hxx> #include <sfx2/objsh.hxx> @@ -810,8 +811,7 @@ bool ScXMLImportWrapper::Export(bool bStylesOnly) xStatusIndicator->start(ScResId(STR_SAVE_DOC), nProgressRange); xInfoSet->setPropertyValue("ProgressRange", uno::makeAny(nProgressRange)); - SvtSaveOptions aSaveOpt; - bool bUsePrettyPrinting(aSaveOpt.IsPrettyPrinting()); + bool bUsePrettyPrinting = officecfg::Office::Common::Save::Document::PrettyPrinting::get(); xInfoSet->setPropertyValue("UsePrettyPrinting", uno::makeAny(bUsePrettyPrinting)); xInfoSet->setPropertyValue( "TargetStorage", uno::Any( xStorage ) ); |