diff options
author | Noel <noelgrandin@gmail.com> | 2020-11-05 14:05:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-05 17:24:34 +0100 |
commit | 69427182555bb5d9faff61cf29e4973f8800d574 (patch) | |
tree | 3db96db11a0d688c20ec48adb40f1c0d15f4b084 /sc | |
parent | d40ef04f12eb3dcc6ac4a7908456a55edf2319e9 (diff) |
StartElement->startFastElement in sc
Change-Id: Ic6f106fd77b200ded466d3de1cc31b83dce6ba08
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105343
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xml/xmlannoi.cxx | 4 | ||||
-rw-r--r-- | sc/source/filter/xml/xmlannoi.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/xml/xmlannoi.cxx b/sc/source/filter/xml/xmlannoi.cxx index 3a0ba33e2322..67ec0d50aee5 100644 --- a/sc/source/filter/xml/xmlannoi.cxx +++ b/sc/source/filter/xml/xmlannoi.cxx @@ -107,10 +107,10 @@ ScXMLAnnotationContext::~ScXMLAnnotationContext() { } -void ScXMLAnnotationContext::StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) +void ScXMLAnnotationContext::startFastElement(sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList) { if (pShapeContext) - pShapeContext->StartElement(xAttrList); + pShapeContext->startFastElement(nElement, xAttrList); } SvXMLImportContextRef ScXMLAnnotationContext::CreateChildContext( sal_uInt16 nPrefix, diff --git a/sc/source/filter/xml/xmlannoi.hxx b/sc/source/filter/xml/xmlannoi.hxx index d9bf57382710..7b8541df5986 100644 --- a/sc/source/filter/xml/xmlannoi.hxx +++ b/sc/source/filter/xml/xmlannoi.hxx @@ -79,7 +79,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList ) override; - virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; + virtual void SAL_CALL startFastElement(sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList) override; virtual void SAL_CALL characters( const OUString& rChars ) override; |