summaryrefslogtreecommitdiff
path: root/xmloff/source/xforms
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-11-02 11:25:12 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-11-02 14:11:49 +0100
commit2764c334c3b9cf428e4e7ab0c28ce6a34036fa77 (patch)
tree0ea20bb119291240ca34c9ef7035503c0bd81bc8 /xmloff/source/xforms
parentd4892e5452bff155da6c34063ffe8c331284d8e9 (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/source/xforms')
-rw-r--r--xmloff/source/xforms/TokenContext.cxx2
-rw-r--r--xmloff/source/xforms/TokenContext.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/xforms/TokenContext.cxx b/xmloff/source/xforms/TokenContext.cxx
index bed97df43ac3..5dd2aeda0450 100644
--- a/xmloff/source/xforms/TokenContext.cxx
+++ b/xmloff/source/xforms/TokenContext.cxx
@@ -119,7 +119,7 @@ static bool lcl_IsWhiteSpace( sal_Unicode c )
|| c == u'\x000D';
}
-void TokenContext::Characters( const OUString& rCharacters )
+void TokenContext::characters( const OUString& rCharacters )
{
// get iterators for string data
const sal_Unicode* pBegin = rCharacters.getStr();
diff --git a/xmloff/source/xforms/TokenContext.hxx b/xmloff/source/xforms/TokenContext.hxx
index f52fb362db1d..05c5b7372a7a 100644
--- a/xmloff/source/xforms/TokenContext.hxx
+++ b/xmloff/source/xforms/TokenContext.hxx
@@ -69,7 +69,7 @@ public:
* content. Classes that wish to deal with character content have
* to override this method anyway, and will thus get rid of the
* warnings. */
- virtual void Characters( const OUString& rChars ) override;
+ virtual void SAL_CALL characters( const OUString& rChars ) override;
protected:
/** will be called for each attribute */