diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2022-05-27 21:34:57 +0200 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2022-05-28 16:47:09 +0200 |
commit | 9896f330cdb3df67b74b16a2c2177a8505fd2485 (patch) | |
tree | 14fb96062eccc15115fc7928fed98341163ee3d8 /xmloff | |
parent | 217ca9c79d75912df3fb735def4b64b0a7284e30 (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>
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; |