diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-09-02 21:10:40 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-09-03 09:15:12 +0200 |
commit | 03e3568f46d74d88a336421640f293c24aef975a (patch) | |
tree | 460ecf23686bf40718255302ac0f7572572b3599 /sw | |
parent | 09e35aafccf2792c7a25e4d8a896b69f0ab47e04 (diff) |
sw: handle SmallCapsPercentage66 when replacing compat options
This was added in commit eea95136da32d09a6f82a99583dd8c158d96c1d9
(compatibility option for old size of small caps (bnc#691473), 2011-05-20),
it's off by default and is only on old ODF documents.
Change-Id: I8e0bcae0b6a5bfd36236fb607356cba2846133e8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101976
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 6c3ee2e54150..c1355c6b6319 100644 --- a/sw/source/core/doc/DocumentSettingManager.cxx +++ b/sw/source/core/doc/DocumentSettingManager.cxx @@ -634,7 +634,7 @@ void sw::DocumentSettingManager::ReplaceCompatibilityOptions(const DocumentSetti // No mbInvertBorderSpacing mbCollapseEmptyCellPara = rSource.mbCollapseEmptyCellPara; mbTabAtLeftIndentForParagraphsInList = rSource.mbTabAtLeftIndentForParagraphsInList; - // No mbSmallCapsPercentage66 + mbSmallCapsPercentage66 = rSource.mbSmallCapsPercentage66; mbTabOverflow = rSource.mbTabOverflow; mbUnbreakableNumberings = rSource.mbUnbreakableNumberings; mbClippedPictures = rSource.mbClippedPictures; |