diff options
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/runtime/methods.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx index 106bfe806d0b..89ba081348c2 100644 --- a/basic/source/runtime/methods.cxx +++ b/basic/source/runtime/methods.cxx @@ -367,9 +367,10 @@ extern "C" void invalidParameterHandler( { SAL_INFO( "basic", - "invalid parameter during _wgetdcwd; \"" << (expression ? o3tl::toU(expression) : u"???") - << "\" (" << (function ? o3tl::toU(function) : u"???") << ") at " - << (file ? o3tl::toU(file) : u"???") << ":" << line); + "invalid parameter during _wgetdcwd; \"" + << (expression ? OUString(o3tl::toU(expression)) : OUString("???")) + << "\" (" << (function ? OUString(o3tl::toU(function)) : OUString("???")) << ") at " + << (file ? OUString(o3tl::toU(file)) : OUString("???")) << ":" << line); } } |