summaryrefslogtreecommitdiff
path: root/desktop/source/app/crashreport.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/app/crashreport.cxx')
-rw-r--r--desktop/source/app/crashreport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/crashreport.cxx b/desktop/source/app/crashreport.cxx
index 29001367bb91..4a702f4420bd 100644
--- a/desktop/source/app/crashreport.cxx
+++ b/desktop/source/app/crashreport.cxx
@@ -46,8 +46,8 @@ namespace {
void writeToStream(std::ofstream& strm, const OUString& rKey, const OUString& rValue)
{
- strm << rtl::OUStringToOString(rKey, RTL_TEXTENCODING_UTF8).getStr() << "=";
- strm << rtl::OUStringToOString(rValue, RTL_TEXTENCODING_UTF8).getStr() << "\n";
+ strm << OUStringToOString(rKey, RTL_TEXTENCODING_UTF8).getStr() << "=";
+ strm << OUStringToOString(rValue, RTL_TEXTENCODING_UTF8).getStr() << "\n";
}
}