[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0-29' - writerfilter/source
Justin Luth (via logerrit)
logerrit at kemper.freedesktop.org
Mon May 18 08:31:32 UTC 2020
writerfilter/source/dmapper/DomainMapper_Impl.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 0e6f32b3fa4883cca7d413d494ad03e4a7d903f3
Author: Justin Luth <justin_luth at sil.org>
AuthorDate: Wed Mar 21 20:47:11 2018 +0300
Commit: Miklos Vajna <vmiklos at collabora.com>
CommitDate: Mon May 18 10:30:59 2020 +0200
comment: Word does not use tabs in footnote implementation
Tabs are inserted when LO exports to MS formats in an attempt to
emulate its "magical" spacing which uses the paragraph margin.
By default, the Footnote paragraph style has a paragraph margin of
0.60cm. A hanging indent places the footnote character before the
margin, and thus a tab advances to the margin. So the emulation
works well.
The previous comment was misleading because it suggests that this
was a Microsoft convention, but actually this is an OOo innovation.
(cherry picked from commit d47c84a5fd38c1aa28fe6e3144b4efd0226f8f97)
Change-Id: Ie8708998457bcb3363bbc760086cf2b41d3eb104
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94323
Tested-by: Miklos Vajna <vmiklos at collabora.com>
Reviewed-by: Miklos Vajna <vmiklos at collabora.com>
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index d5fbaa9f2af6..776a003f2ba2 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -1751,9 +1751,9 @@ void DomainMapper_Impl::PushFootOrEndnote( bool bIsFootnote )
// Redlines for the footnote anchor
CheckRedline( xFootnote->getAnchor( ) );
- // Word has a leading tab on footnotes, but we may implement space
- // between the footnote number and text using a paragraph margin, not a
- // tab (Writer default). So ignore that in case there is a margin set.
+ // LO inserts a tab when exporting to MS formats in order to emulate its automatic space
+ // between the footnote number and text using the paragraph margin.
+ // So ignore that tab when there is a margin set.
uno::Reference<style::XStyleFamiliesSupplier> xStylesSupplier( GetTextDocument(), uno::UNO_QUERY);
uno::Reference<container::XNameAccess> xStyleFamilies = xStylesSupplier->getStyleFamilies();
uno::Reference<container::XNameContainer> xStyles;
More information about the Libreoffice-commits
mailing list