diff options
-rw-r--r-- | desktop/source/app/crashreport.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/crashreport.cxx b/desktop/source/app/crashreport.cxx index 18db12d07b38..82e861a99090 100644 --- a/desktop/source/app/crashreport.cxx +++ b/desktop/source/app/crashreport.cxx @@ -188,13 +188,13 @@ OUString CrashReporter::getLoggedUnoCommands() { osl::MutexGuard aGuard(maUnoLogCmdMutex); - OUString aCommandSeperator=""; + std::u16string_view aCommandSeperator; OUStringBuffer aUnoCommandBuffer; for( auto& unocommand: maloggedUnoCommands) { aUnoCommandBuffer.append(aCommandSeperator + unocommand); - aCommandSeperator=","; + aCommandSeperator=u","_ustr; } return aUnoCommandBuffer.makeStringAndClear(); } |