summaryrefslogtreecommitdiff
path: root/sw/source/filter
diff options
context:
space:
mode:
authorPatrick Jaap <patrick.jaap@tu-dresden.de>2018-04-10 15:29:56 +0200
committerAndras Timar <andras.timar@collabora.com>2018-06-01 20:48:19 +0200
commitd63582783439cfd1df5c355805566197cb7d7292 (patch)
treeb10c4b7549e1f8f243e9998d0401870681653ce5 /sw/source/filter
parentc632ba5c76708aa454d1199d09f58bbbb9a9150f (diff)
tdf#116195 swap a compatibility value
There was a minor bug in the compat flag, leading to a regression from commit 8d62b79f168180c6992eb483ec864d473050635f Change-Id: I1e468e665a583ef15b6e474c3adb32f1dcf98f46 Reviewed-on: https://gerrit.libreoffice.org/52674 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> (cherry picked from commit fe3d5766fa3c42f6cf8d1ea47af820e0b1c1cf48) Reviewed-on: https://gerrit.libreoffice.org/55120 Reviewed-by: Patrick Jaap <patrick.jaap@tu-dresden.de> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> (cherry picked from commit 39f2125c4952063f4bdc36d9abba18daaee72d68)
Diffstat (limited to 'sw/source/filter')
-rw-r--r--sw/source/filter/xml/xmlimp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/xml/xmlimp.cxx b/sw/source/filter/xml/xmlimp.cxx
index ff9aaf182fe2..76e33d572772 100644
--- a/sw/source/filter/xml/xmlimp.cxx
+++ b/sw/source/filter/xml/xmlimp.cxx
@@ -1425,7 +1425,7 @@ void SwXMLImport::SetConfigurationSettings(const Sequence < PropertyValue > & aC
if (!bSubtractFlysAnchoredAtFlys)
xProps->setPropertyValue("SubtractFlysAnchoredAtFlys", makeAny(true));
- if ( !bDisableOffPagePositioning )
+ if ( bDisableOffPagePositioning )
xProps->setPropertyValue("DisableOffPagePositioning", makeAny(true));
SwDoc *pDoc = getDoc();