diff options
author | Noel <noelgrandin@gmail.com> | 2020-11-02 11:25:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-02 14:11:49 +0100 |
commit | 2764c334c3b9cf428e4e7ab0c28ce6a34036fa77 (patch) | |
tree | 0ea20bb119291240ca34c9ef7035503c0bd81bc8 /xmloff/inc | |
parent | d4892e5452bff155da6c34063ffe8c331284d8e9 (diff) |
drop the SvXMLExport::Characters method..
in favour of just using the characters() method
Change-Id: Iecb2773d488fcf4fa3c2202d0e889015a288fe2a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105174
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/inc')
-rw-r--r-- | xmloff/inc/DomBuilderContext.hxx | 2 | ||||
-rw-r--r-- | xmloff/inc/XMLEmbeddedObjectImportContext.hxx | 2 | ||||
-rw-r--r-- | xmloff/inc/txtfldi.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/inc/DomBuilderContext.hxx b/xmloff/inc/DomBuilderContext.hxx index 81fe98942160..4df66e7ec5e3 100644 --- a/xmloff/inc/DomBuilderContext.hxx +++ b/xmloff/inc/DomBuilderContext.hxx @@ -79,7 +79,7 @@ public: virtual void StartElement( const css::uno::Reference<css::xml::sax::XAttributeList>& xAttrList ) override; - virtual void Characters( const OUString& rChars ) override; + virtual void SAL_CALL characters( const OUString& rChars ) override; }; #endif diff --git a/xmloff/inc/XMLEmbeddedObjectImportContext.hxx b/xmloff/inc/XMLEmbeddedObjectImportContext.hxx index 029dfd45815e..042605f4bf8f 100644 --- a/xmloff/inc/XMLEmbeddedObjectImportContext.hxx +++ b/xmloff/inc/XMLEmbeddedObjectImportContext.hxx @@ -52,7 +52,7 @@ public: virtual void EndElement() override; - virtual void Characters( const OUString& rChars ) override; + virtual void SAL_CALL characters( const OUString& rChars ) override; void SetComponent( css::uno::Reference< css::lang::XComponent > const & rComp ); diff --git a/xmloff/inc/txtfldi.hxx b/xmloff/inc/txtfldi.hxx index 2e8f9562c40a..ecdace2b1578 100644 --- a/xmloff/inc/txtfldi.hxx +++ b/xmloff/inc/txtfldi.hxx @@ -131,7 +131,7 @@ public: const OUString& rLocalName); /// element name w/o prefix /// process character data: will be collected in member sContentBuffer - virtual void Characters( const OUString& sContent ) override; + virtual void SAL_CALL characters( const OUString& sContent ) override; /// parses attributes and calls ProcessAttribute virtual void StartElement( |