diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-03-05 13:12:27 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-03-05 14:57:23 +0100 |
commit | 3ea32f2b6cbe515353218bc1f3d5746ca66f6a5a (patch) | |
tree | e126e017372c671f7f199e7769a5f91ad08e905c /sw/source | |
parent | f27c6320e8496d690b5d341d3718430709263a1c (diff) |
sw padded numbering: add DOCX footnote export
This is mapping separate from paragraph numbering. I'm not exactly why;
perhaps because this is modeled after DOC, where certain numbering types
are not allowed for paragraph numbering (but are allowed for other
numbering types).
Change-Id: I06503389da520bd3bfd39252c4dcef39bac03eee
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90013
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index a2fbd2a96f33..6f512b85352c 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -7734,6 +7734,9 @@ void DocxAttributeOutput::WriteFootnoteEndnotePr( ::sax_fastparser::FSHelperPtr case SVX_NUM_CHAR_SPECIAL: fmt = "bullet"; break; + case SVX_NUM_ARABIC_ZERO: + fmt = "decimalZero"; + break; case SVX_NUM_PAGEDESC: case SVX_NUM_BITMAP: default: |