summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLTextFrameContext.cxx
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/text/XMLTextFrameContext.cxx
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/text/XMLTextFrameContext.cxx')
-rw-r--r--xmloff/source/text/XMLTextFrameContext.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/text/XMLTextFrameContext.cxx b/xmloff/source/text/XMLTextFrameContext.cxx
index 7ab210dbd938..5452027a31f4 100644
--- a/xmloff/source/text/XMLTextFrameContext.cxx
+++ b/xmloff/source/text/XMLTextFrameContext.cxx
@@ -129,7 +129,7 @@ public:
const OUString& rLName,
OUString& rTitleOrDesc );
- virtual void Characters( const OUString& rText ) override;
+ virtual void SAL_CALL characters( const OUString& rText ) override;
};
}
@@ -144,7 +144,7 @@ XMLTextFrameTitleOrDescContext_Impl::XMLTextFrameTitleOrDescContext_Impl(
{
}
-void XMLTextFrameTitleOrDescContext_Impl::Characters( const OUString& rText )
+void XMLTextFrameTitleOrDescContext_Impl::characters( const OUString& rText )
{
mrTitleOrDesc += rText;
}
@@ -407,7 +407,7 @@ public:
virtual void EndElement() override;
- virtual void Characters( const OUString& rChars ) override;
+ virtual void SAL_CALL characters( const OUString& rChars ) override;
SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix,
const OUString& rLocalName,
@@ -1249,7 +1249,7 @@ SvXMLImportContextRef XMLTextFrameContext_Impl::CreateChildContext(
return pContext;
}
-void XMLTextFrameContext_Impl::Characters( const OUString& rChars )
+void XMLTextFrameContext_Impl::characters( const OUString& rChars )
{
maUrlBuffer.append(rChars);
}