summaryrefslogtreecommitdiff
path: root/basic/source/runtime/runtime.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-05-06 10:17:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-05-06 13:56:49 +0200
commit7d6e751faa545552de7859cd6530926676caf09f (patch)
treeaf1f5451761b73f5769692ac6524454c375a591d /basic/source/runtime/runtime.cxx
parent84687944439f5a2d96d771429bf58bf49b084d8c (diff)
loplugin:ostr basic
Change-Id: Ie5fc4676bd1cab2c0417b479bf08dda00936469a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167191 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic/source/runtime/runtime.cxx')
-rw-r--r--basic/source/runtime/runtime.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index 12d522790c38..e2f82d5ad97d 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -3759,7 +3759,7 @@ SbxBase* SbiRuntime::FindElementExtern( const OUString& rName )
{
// Parameter is missing
pElem = new SbxVariable( SbxSTRING );
- pElem->PutString( "<missing parameter>");
+ pElem->PutString( u"<missing parameter>"_ustr);
}
else
{