summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-11-20 09:59:44 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-20 10:38:56 +0100
commitc1346f75145415a6a28b3b0f4e83d09bdfbc67e0 (patch)
treee053345c29837d7f79bc75251abe59b8913b915b /linguistic
parent5059984c44379d09eabf740c21db062b925394ad (diff)
use correct parser overrides in ConvDicXMLImportContext
after commit 36c965311f53dd9feae63ed4f8ab6de4cc449b99 Date: Sun Sep 29 19:40:09 2019 +0200 use FastParser in linguistic Change-Id: Ie337e53d12053068a63aee2d2fc48903e256302b Reviewed-on: https://gerrit.libreoffice.org/83259 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/convdicxml.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/linguistic/source/convdicxml.cxx b/linguistic/source/convdicxml.cxx
index f4165abcadf8..979a33ab8464 100644
--- a/linguistic/source/convdicxml.cxx
+++ b/linguistic/source/convdicxml.cxx
@@ -84,7 +84,7 @@ public:
}
// SvXMLImportContext
- virtual void Characters( const OUString &rChars ) override;
+ virtual void SAL_CALL characters( const OUString &rChars ) override;
virtual css::uno::Reference<XFastContextHandler> SAL_CALL createFastChildContext(
sal_Int32 Element, const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList ) override;
};
@@ -148,14 +148,14 @@ public:
// SvXMLImportContext
virtual void SAL_CALL endFastElement( sal_Int32 nElement ) override;
- virtual void Characters( const OUString &rChars ) override;
+ virtual void SAL_CALL characters( const OUString &rChars ) override;
const OUString & GetRightText() const { return aRightText; }
const OUString & GetLeftText() const { return rEntryContext.GetLeftText(); }
};
-void ConvDicXMLImportContext::Characters(const OUString & /*rChars*/)
+void ConvDicXMLImportContext::characters(const OUString & /*rChars*/)
{
/*
Whitespace occurring within the content of token elements is "trimmed"
@@ -250,7 +250,7 @@ void ConvDicXMLEntryTextContext_Impl::startFastElement(
}
-void ConvDicXMLRightTextContext_Impl::Characters( const OUString &rChars )
+void ConvDicXMLRightTextContext_Impl::characters( const OUString &rChars )
{
aRightText += rChars;
}