summaryrefslogtreecommitdiff
path: root/basic/source/runtime/methods.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/runtime/methods.cxx')
-rw-r--r--basic/source/runtime/methods.cxx7
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);
}
}