diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-28 15:56:40 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-02 07:44:26 +0100 |
commit | 0cf5d0fa5e1a7d5dafa7e899e065edb042764f44 (patch) | |
tree | 32eea22346cc65464a477882f39257f1931dec73 /include/xmloff | |
parent | 201a7652092c6a7796a59e6ddee144e4f0c9ece9 (diff) |
don't rely on parser ::characters callback only firing once
which is true for the old parser, but not always so for the FastParser.
So pre-emptively fix some stuff
Change-Id: I405834f1dfd28c98cae87b6de38d238f723edafd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89712
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/xmloff')
-rw-r--r-- | include/xmloff/XMLBase64ImportContext.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xmloff/XMLBase64ImportContext.hxx b/include/xmloff/XMLBase64ImportContext.hxx index ff302064bdf6..8169b64281eb 100644 --- a/include/xmloff/XMLBase64ImportContext.hxx +++ b/include/xmloff/XMLBase64ImportContext.hxx @@ -32,7 +32,7 @@ namespace com { namespace sun { namespace star { namespace io { class XMLOFF_DLLPUBLIC XMLBase64ImportContext final : public SvXMLImportContext { css::uno::Reference< css::io::XOutputStream > xOut; - OUString sBase64CharsLeft; + OUStringBuffer maCharBuffer; public: |