From cbaf1fbaa6e707d939f815eda360fad68a492aca Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 11 Apr 2022 22:24:20 +0200 Subject: loplugin:stringview more o3tl conversion look for call sequences that can use string_view and the new o3tl functions in o3tl/string_view.hxx Also add a few more wrappers to said #include file Change-Id: I05d8752cc67a7b55b0b57e8eed803bd06bfcd9ea Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132840 Tested-by: Jenkins Reviewed-by: Noel Grandin --- xmloff/source/script/XMLStarBasicContextFactory.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'xmloff/source/script/XMLStarBasicContextFactory.cxx') diff --git a/xmloff/source/script/XMLStarBasicContextFactory.cxx b/xmloff/source/script/XMLStarBasicContextFactory.cxx index eec6ded9f207..e26198978596 100644 --- a/xmloff/source/script/XMLStarBasicContextFactory.cxx +++ b/xmloff/source/script/XMLStarBasicContextFactory.cxx @@ -24,6 +24,7 @@ #include #include #include +#include using namespace ::xmloff::token; @@ -66,14 +67,14 @@ SvXMLImportContext* XMLStarBasicContextFactory::CreateContext( const OUString& rApp = GetXMLToken( XML_APPLICATION ); const OUString& rDoc = GetXMLToken( XML_DOCUMENT ); if( sMacroNameVal.getLength() > rApp.getLength()+1 && - sMacroNameVal.copy(0,rApp.getLength()).equalsIgnoreAsciiCase( rApp ) && + o3tl::equalsIgnoreAsciiCase(sMacroNameVal.subView(0,rApp.getLength()), rApp ) && ':' == sMacroNameVal[rApp.getLength()] ) { sLibraryVal = "StarOffice"; sMacroNameVal = sMacroNameVal.copy( rApp.getLength()+1 ); } else if( sMacroNameVal.getLength() > rDoc.getLength()+1 && - sMacroNameVal.copy(0,rDoc.getLength()).equalsIgnoreAsciiCase( rDoc ) && + o3tl::equalsIgnoreAsciiCase(sMacroNameVal.subView(0,rDoc.getLength()), rDoc ) && ':' == sMacroNameVal[rDoc.getLength()] ) { sLibraryVal = rDoc; -- cgit