diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-30 10:22:09 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-30 13:50:06 +0200 |
commit | f59334988a77eece1cae7d63e0df4320beebf384 (patch) | |
tree | 1a7b79dc48a4a4a043e998a0809e29013f71bb99 /xmloff/inc | |
parent | 8c65269a70b2d7d2323629204842f0ac751cf555 (diff) |
use more fastparser in SvXMLStyleContext subclasses
Change-Id: I6a1596bdbfa4db128730a663fc590c9e5bfa249d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101659
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/inc')
-rw-r--r-- | xmloff/inc/PageMasterImportContext.hxx | 3 | ||||
-rw-r--r-- | xmloff/inc/XMLChartStyleContext.hxx | 3 | ||||
-rw-r--r-- | xmloff/inc/XMLIndexBibliographyConfigurationContext.hxx | 5 | ||||
-rw-r--r-- | xmloff/inc/XMLLineNumberingImportContext.hxx | 6 |
4 files changed, 4 insertions, 13 deletions
diff --git a/xmloff/inc/PageMasterImportContext.hxx b/xmloff/inc/PageMasterImportContext.hxx index 158c7ce29503..08b361fbb84c 100644 --- a/xmloff/inc/PageMasterImportContext.hxx +++ b/xmloff/inc/PageMasterImportContext.hxx @@ -36,8 +36,7 @@ private: public: - PageStyleContext( SvXMLImport& rImport, sal_Int32 nElement, - const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList, + PageStyleContext( SvXMLImport& rImport, SvXMLStylesContext& rStyles, bool bDefaultStyle); virtual ~PageStyleContext() override; diff --git a/xmloff/inc/XMLChartStyleContext.hxx b/xmloff/inc/XMLChartStyleContext.hxx index 8fc13f3cc6da..c22df28ffa75 100644 --- a/xmloff/inc/XMLChartStyleContext.hxx +++ b/xmloff/inc/XMLChartStyleContext.hxx @@ -36,8 +36,7 @@ private: public: XMLChartStyleContext( - SvXMLImport& rImport, sal_Int32 nElement, - const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList, + SvXMLImport& rImport, SvXMLStylesContext& rStyles, XmlStyleFamily nFamily ); virtual ~XMLChartStyleContext() override; diff --git a/xmloff/inc/XMLIndexBibliographyConfigurationContext.hxx b/xmloff/inc/XMLIndexBibliographyConfigurationContext.hxx index 4efc71336502..d02e799200c3 100644 --- a/xmloff/inc/XMLIndexBibliographyConfigurationContext.hxx +++ b/xmloff/inc/XMLIndexBibliographyConfigurationContext.hxx @@ -54,10 +54,7 @@ class XMLIndexBibliographyConfigurationContext final : public SvXMLStyleContext public: - XMLIndexBibliographyConfigurationContext( - SvXMLImport& rImport, - sal_Int32 nElement, - const css::uno::Reference< css::xml::sax::XFastAttributeList> & xAttrList); + XMLIndexBibliographyConfigurationContext(SvXMLImport& rImport); virtual ~XMLIndexBibliographyConfigurationContext() override; diff --git a/xmloff/inc/XMLLineNumberingImportContext.hxx b/xmloff/inc/XMLLineNumberingImportContext.hxx index 852f3076d574..4baeb35048a4 100644 --- a/xmloff/inc/XMLLineNumberingImportContext.hxx +++ b/xmloff/inc/XMLLineNumberingImportContext.hxx @@ -65,11 +65,7 @@ class XMLLineNumberingImportContext final : public SvXMLStyleContext public: - - XMLLineNumberingImportContext( - SvXMLImport& rImport, - sal_Int32 nElement, - const css::uno::Reference<css::xml::sax::XFastAttributeList> & xAttrList); + XMLLineNumberingImportContext(SvXMLImport& rImport); virtual ~XMLLineNumberingImportContext() override; |