[Libreoffice-commits] core.git: linguistic/source
Noel Grandin (via logerrit)
logerrit at kemper.freedesktop.org
Wed Nov 20 09:40:05 UTC 2019
linguistic/source/convdicxml.cxx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit c1346f75145415a6a28b3b0f4e83d09bdfbc67e0
Author: Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Wed Nov 20 09:59:44 2019 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Wed Nov 20 10:38:56 2019 +0100
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 at collabora.co.uk>
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;
}
More information about the Libreoffice-commits
mailing list