summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2021-02-18 10:50:40 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-02-18 12:08:23 +0100
commit63d14566ba93b87f23a7ba68f8ea733cf19be101 (patch)
treeea5bec54d2eb8e25991a56f86ae9817bbf3d1bf5
parent6d1b079b0c034948384a11675c6f7f52a29d23d7 (diff)
tdf#140198 Base text field will not retain multi-line setting
regression due to a combination of commit 3de38e95561ab7ca114d9f3307702ba89c4e3e9a Date: Tue Nov 10 19:20:06 2020 +0200 use fastparser in forms and commit 3d0084770923ed8c17e496965abae862a4796e63 Date: Fri Dec 4 16:14:16 2020 +0200 fastparser in a couple of random places The first one introduced the bug, due to the fallback paths from fast to slowparser, things kept working, until the second one removed the fallback. Change-Id: I1aaae902eda2aaf8f5151404ddb3577f4582757d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111101 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--xmloff/source/forms/elementimport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/forms/elementimport.cxx b/xmloff/source/forms/elementimport.cxx
index bb2e371f6c79..efcc4b7e73aa 100644
--- a/xmloff/source/forms/elementimport.cxx
+++ b/xmloff/source/forms/elementimport.cxx
@@ -1339,7 +1339,7 @@ namespace xmloff
}
}
- return nullptr;
+ return OControlImport::createFastChildContext( nElement, xAttrList );
}
void OTextLikeImport::startFastElement(sal_Int32 nElement, const Reference< css::xml::sax::XFastAttributeList >& _rxAttrList)