summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
Diffstat (limited to 'basctl')
-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))
{