diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-06-24 21:02:05 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-06-25 09:08:20 +0200 |
commit | 7609f0f0e3aecb9edfa0a1738e17e46a6281e1bd (patch) | |
tree | 756d679cf7e80e32b24f50145a98e72759f10d28 /sw | |
parent | a83043d2c8f3ece0af32b964161191c377a3904f (diff) |
sw: handle BackgroundParaOverDrawings when replacing compat options
This was added in commit 18b3feb8bef06bf7b126fd0bc743e19479cb8026 (n#778133 sw:
add BackgroundParaOverDrawings compat flag, 2012-09-12), it's off by default
and on for DOCX documents.
Change-Id: If584f8eef2672d5d41c249e2b77b20f029587e23
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97078
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/doc/DocumentSettingManager.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/DocumentSettingManager.cxx b/sw/source/core/doc/DocumentSettingManager.cxx index c5a262f28596..1f2f4aef7e85 100644 --- a/sw/source/core/doc/DocumentSettingManager.cxx +++ b/sw/source/core/doc/DocumentSettingManager.cxx @@ -633,7 +633,7 @@ void sw::DocumentSettingManager::ReplaceCompatibilityOptions(const DocumentSetti // No mbTabOverflow mbUnbreakableNumberings = rSource.mbUnbreakableNumberings; // No mbClippedPictures - // No mbBackgroundParaOverDrawings + mbBackgroundParaOverDrawings = rSource.mbBackgroundParaOverDrawings; mbTabOverMargin = rSource.mbTabOverMargin; mbTreatSingleColumnBreakAsPageBreak = rSource.mbTreatSingleColumnBreakAsPageBreak; mbSurroundTextWrapSmall = rSource.mbSurroundTextWrapSmall; |