diff options
Diffstat (limited to 'desktop/source')
-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 794e4e6b6b63..3420f20c4496 100644 --- a/desktop/source/app/crashreport.cxx +++ b/desktop/source/app/crashreport.cxx @@ -50,8 +50,8 @@ void CrashReporter::writeToFile(std::ios_base::openmode Openmode) for (auto& keyValue : maKeyValues) { - ini_file << OUStringToOString(keyValue.first, RTL_TEXTENCODING_UTF8).getStr() << "="; - ini_file << OUStringToOString(keyValue.second, RTL_TEXTENCODING_UTF8).getStr() << "\n"; + ini_file << OUStringToOString(keyValue.first, RTL_TEXTENCODING_UTF8) << "="; + ini_file << OUStringToOString(keyValue.second, RTL_TEXTENCODING_UTF8) << "\n"; } maKeyValues.clear(); |