summaryrefslogtreecommitdiff
path: root/basctl/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-11-22 14:08:27 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-11-23 14:00:08 +0100
commitec1c4c49301758c54394f9943252e192ad54638b (patch)
treeb53af3cb9154a388495b1af35c3f8ff41d6ebe1f /basctl/source
parentdb0f2c29bf3a6ad5a08f8524ea0e65aa90792bb2 (diff)
O[U]String::replaceAt overloads that take string_view
which results in lots of nice string_view improvements picked up by the plugins Change-Id: Ib0ec3887816b3d4436d003b739d9814f83e244b2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125657 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basctl/source')
-rw-r--r--basctl/source/basicide/baside2b.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx
index 48f429848f66..9da55fa318a8 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -175,13 +175,13 @@ void lcl_SeparateNameAndIndex( const OUString& rVName, OUString& rVar, OUString&
{
sal_uInt16 nLastChar = rVar.getLength()-1;
if ( cSuffixes.find(rVar[ nLastChar ] ) != std::u16string_view::npos )
- rVar = rVar.replaceAt( nLastChar, 1, "" );
+ rVar = rVar.replaceAt( nLastChar, 1, u"" );
}
if ( !rIndex.isEmpty() )
{
sal_uInt16 nLastChar = rIndex.getLength()-1;
if ( cSuffixes.find(rIndex[ nLastChar ] ) != std::u16string_view::npos )
- rIndex = rIndex.replaceAt( nLastChar, 1, "" );
+ rIndex = rIndex.replaceAt( nLastChar, 1, u"" );
}
}
@@ -373,7 +373,7 @@ void EditorWindow::RequestHelp( const HelpEvent& rHEvt )
{
sal_uInt16 nLastChar = aWord.getLength() - 1;
if ( cSuffixes.find(aWord[ nLastChar ] ) != std::u16string_view::npos )
- aWord = aWord.replaceAt( nLastChar, 1, "" );
+ aWord = aWord.replaceAt( nLastChar, 1, u"" );
SbxBase* pSBX = StarBASIC::FindSBXInCurrentScope( aWord );
if (SbxVariable const* pVar = IsSbxVariable(pSBX))
{