diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2022-05-27 21:34:57 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2022-06-01 12:30:35 +0200 |
commit | c0984fb14f5ebb26a4c5fd7b3c472b719babedfa (patch) | |
tree | 16958084a7e9347ec41c8c26dac209b2e008f9e2 /xmloff | |
parent | 2f933c8c2e374433aa322250310830e7ca1e3cdf (diff) |
tdf#145178 xmloff: ODF import: fix another bad attribute
...in XMLSectionFootnoteConfigImport.
(regression from commit 9814c1f2edf56ecc0f31001db9234ef335488879)
Change-Id: I79ab3b74853bd3ec9058fea72c341768e916bbd3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135048
Tested-by: Michael Stahl <michael.stahl@allotropia.de>
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
(cherry picked from commit 9896f330cdb3df67b74b16a2c2177a8505fd2485)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135056
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/XMLSectionFootnoteConfigImport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/text/XMLSectionFootnoteConfigImport.cxx b/xmloff/source/text/XMLSectionFootnoteConfigImport.cxx index ef408c0c13c8..0f4f51e1b4e3 100644 --- a/xmloff/source/text/XMLSectionFootnoteConfigImport.cxx +++ b/xmloff/source/text/XMLSectionFootnoteConfigImport.cxx @@ -113,7 +113,7 @@ void XMLSectionFootnoteConfigImport::startFastElement( bNumOwn = true; break; } - case XML_ELEMENT(TEXT, XML_NUM_LETTER_SYNC): + case XML_ELEMENT(STYLE, XML_NUM_LETTER_SYNC): { sNumLetterSync = aIter.toString(); bNumOwn = true; |