From e1383444c6d00f5d0b1d507670517f45988b9cc7 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 7 Jan 2020 13:01:41 +0200 Subject: extract some common code from ImportContext classes which reduces code bloat, and lets us log when elements are ignored Change-Id: I5ca12bc1fcbfa3bea49ebde819fd80bd233a96a0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86338 Tested-by: Jenkins Reviewed-by: Noel Grandin --- linguistic/source/convdicxml.cxx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'linguistic') diff --git a/linguistic/source/convdicxml.cxx b/linguistic/source/convdicxml.cxx index 07ce5258e3ad..b2dc42dbb270 100644 --- a/linguistic/source/convdicxml.cxx +++ b/linguistic/source/convdicxml.cxx @@ -171,8 +171,7 @@ css::uno::Reference ConvDicXMLImportContext::createFastChil { if ( Element == ConvDicXMLToken::TEXT_CONVERSION_DICTIONARY ) return new ConvDicXMLDictionaryContext_Impl( GetConvDicImport() ); - else - return new SvXMLImportContext( GetImport() ); + return nullptr; } @@ -210,8 +209,7 @@ css::uno::Reference ConvDicXMLDictionaryContext_Impl::creat { if ( Element == ConvDicXMLToken::ENTRY ) return new ConvDicXMLEntryTextContext_Impl( GetConvDicImport() ); - else - return new SvXMLImportContext(GetImport()); + return nullptr; } css::uno::Reference ConvDicXMLEntryTextContext_Impl::createFastChildContext( @@ -220,8 +218,7 @@ css::uno::Reference ConvDicXMLEntryTextContext_Impl::create { if ( Element == ConvDicXMLToken::RIGHT_TEXT ) return new ConvDicXMLRightTextContext_Impl( GetConvDicImport(), *this ); - else - return new SvXMLImportContext(GetImport()); + return nullptr; } void ConvDicXMLEntryTextContext_Impl::startFastElement( -- cgit