diff options
author | Noel <noelgrandin@gmail.com> | 2020-11-12 11:32:04 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-12 16:53:48 +0100 |
commit | 392d219b30d6e6e3e636673ed6aa528811356cd2 (patch) | |
tree | 7c7eab35ccf9c12818528ce18b71f91118211c28 | |
parent | f34ac579fac16fff37bf00fe85d43ad6b938eca7 (diff) |
fix bug in text field import
fallout from
commit 75b55ec26586b80aa851a9491e93a9e13eb012fc
Author: Noel <noelgrandin@gmail.com>
Date: Thu Nov 5 15:16:55 2020 +0200
StartElement->startFastElement in text fields
Change-Id: I0aec8411fc5c505ce772a81dfb865a4adc07e78e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105627
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | xmloff/source/text/txtfldi.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/text/txtfldi.cxx b/xmloff/source/text/txtfldi.cxx index 58f0d08c46b9..fd643a6cd6ca 100644 --- a/xmloff/source/text/txtfldi.cxx +++ b/xmloff/source/text/txtfldi.cxx @@ -1123,7 +1123,7 @@ void XMLDateFieldImportContext::ProcessAttribute( case XML_ELEMENT(TEXT, XML_DATE_ADJUST): // delegate to superclass, pretending it was a time-adjust attr. XMLTimeFieldImportContext::ProcessAttribute( - XML_TOK_TEXTFIELD_TIME_ADJUST, + XML_ELEMENT(TEXT, XML_TIME_ADJUST), sAttrValue); break; case XML_ELEMENT(TEXT, XML_TIME_VALUE): |