summaryrefslogtreecommitdiff
path: root/include/xmloff
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-11-02 12:26:26 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-11-02 17:08:47 +0100
commit3940cf7d716f3e469f47d3c831a799e58edf2eb8 (patch)
tree96c54b88e76e8eeff2b58700fce6a3b4f6722cde /include/xmloff
parentdd24e21bb4f183048a738314934fc3f02ec093f1 (diff)
drop the SvXMLExport::EndElement method..
in favour of just using the endFastElement() method Change-Id: Id95abb0b9e78bc44278c5e9e3cc8dee15185e2e2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105175 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/xmloff')
-rw-r--r--include/xmloff/xmlictxt.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/xmloff/xmlictxt.hxx b/include/xmloff/xmlictxt.hxx
index 111009506ca1..7753a00f3c68 100644
--- a/include/xmloff/xmlictxt.hxx
+++ b/include/xmloff/xmlictxt.hxx
@@ -94,11 +94,6 @@ public:
* require virtual methods. The default is to do nothing. */
virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList );
- /** EndElement is called before a context will be destructed, but
- * after an elements context has been parsed. It may be used for actions
- * that require virtual methods. The default is to do nothing. */
- virtual void EndElement();
-
// css::xml::sax::XFastContextHandler:
virtual void SAL_CALL startFastElement (sal_Int32 Element,
const css::uno::Reference< css::xml::sax::XFastAttributeList >& Attribs) override;
@@ -106,6 +101,9 @@ public:
virtual void SAL_CALL startUnknownElement(const OUString & Namespace, const OUString & Name,
const css::uno::Reference< css::xml::sax::XFastAttributeList > & Attribs) override;
+ /** endFastElement is called before a context will be destructed, but
+ * after an elements context has been parsed. It may be used for actions
+ * that require virtual methods. The default is to do nothing. */
virtual void SAL_CALL endFastElement(sal_Int32 Element) override;
virtual void SAL_CALL endUnknownElement(const OUString & Namespace, const OUString & Name) override;