diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2020-11-20 15:07:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-21 07:06:11 +0100 |
commit | d0a60f7785dc66e0d491b50e093ebcf606627226 (patch) | |
tree | 24bebb09abae30dba9ad07a3b0c347d5c37fbf64 /xmloff/inc | |
parent | 8c14adfa76956e76bac98330ce67f080c90af184 (diff) |
fastparser in XMLEventsImportContext
Change-Id: Ifeeb2220ec6dfe6ec91f238137796d7d9e517465
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106261
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/inc')
-rw-r--r-- | xmloff/inc/XMLEventImportHelper.hxx | 4 | ||||
-rw-r--r-- | xmloff/inc/XMLScriptContextFactory.hxx | 2 | ||||
-rw-r--r-- | xmloff/inc/XMLStarBasicContextFactory.hxx | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/inc/XMLEventImportHelper.hxx b/xmloff/inc/XMLEventImportHelper.hxx index d2514ebe46b6..0f0c15b292c5 100644 --- a/xmloff/inc/XMLEventImportHelper.hxx +++ b/xmloff/inc/XMLEventImportHelper.hxx @@ -29,7 +29,7 @@ namespace com::sun::star { - namespace xml::sax { class XAttributeList; } + namespace xml::sax { class XFastAttributeList; } } class XMLEventContextFactory; class XMLEventsImportContext; @@ -84,7 +84,7 @@ public: /// create an appropriate import context for a particular event SvXMLImportContext* CreateContext( SvXMLImport& rImport, - const css::uno::Reference< css::xml::sax::XAttributeList> & xAttrList, + const css::uno::Reference< css::xml::sax::XFastAttributeList> & xAttrList, XMLEventsImportContext* rEvents, const OUString& rXmlEventName, const OUString& rLanguage); diff --git a/xmloff/inc/XMLScriptContextFactory.hxx b/xmloff/inc/XMLScriptContextFactory.hxx index cd4ade05b848..53317c4bb0c8 100644 --- a/xmloff/inc/XMLScriptContextFactory.hxx +++ b/xmloff/inc/XMLScriptContextFactory.hxx @@ -39,7 +39,7 @@ public: virtual SvXMLImportContext * CreateContext(SvXMLImport & rImport, /// import context /// attribute list - const css::uno::Reference< css::xml::sax::XAttributeList> & xAttrList, + const css::uno::Reference< css::xml::sax::XFastAttributeList> & xAttrList, /// the context for the enclosing <script:events> element XMLEventsImportContext * rEvents, /// the event name (as understood by the API) diff --git a/xmloff/inc/XMLStarBasicContextFactory.hxx b/xmloff/inc/XMLStarBasicContextFactory.hxx index 12daf023b065..b375f546bb4c 100644 --- a/xmloff/inc/XMLStarBasicContextFactory.hxx +++ b/xmloff/inc/XMLStarBasicContextFactory.hxx @@ -39,7 +39,7 @@ public: virtual SvXMLImportContext* CreateContext( SvXMLImport& rImport, /// import context - const css::uno::Reference<css::xml::sax::XAttributeList> & xAttrList,/// attribute list + const css::uno::Reference<css::xml::sax::XFastAttributeList> & xAttrList,/// attribute list /// the context for the enclosing <script:events> element XMLEventsImportContext* rEvents, /// the event name (as understood by the API) |