From 3ea32f2b6cbe515353218bc1f3d5746ca66f6a5a Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Thu, 5 Mar 2020 13:12:27 +0100 Subject: 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 Tested-by: Jenkins --- sw/source/filter/ww8/docxattributeoutput.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sw/source') 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: -- cgit