summaryrefslogtreecommitdiff
path: root/sw/source/filter/xml
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/xml')
-rw-r--r--sw/source/filter/xml/xmlimp.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/filter/xml/xmlimp.cxx b/sw/source/filter/xml/xmlimp.cxx
index d0266ef31c28..e164da851430 100644
--- a/sw/source/filter/xml/xmlimp.cxx
+++ b/sw/source/filter/xml/xmlimp.cxx
@@ -1450,7 +1450,8 @@ void SwXMLImport::SetConfigurationSettings(const Sequence < PropertyValue > & aC
// finally, treat the non-default cases
// introduce boolean, that indicates a document, written by version prior SO8.
- const bool bDocumentPriorSO8 = !bConsiderWrapOnObjPos;
+ // If user settings are not loaded, we can't know if this is an old document. Better to assume no?
+ const bool bDocumentPriorSO8 = !bConsiderWrapOnObjPos && bAreUserSettingsFromDocument;
// Use old behaviour if this setting didn't exist, but only if this setting is being read from the document.
// (Obviously the setting doesn't exist if we are explicitly ignoring it, so then stick with program/user defaults)