diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-01 08:52:59 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-01 08:52:59 +0100 |
commit | 7916f250c42ccb7624feb1a1f6524e2aac3a1036 (patch) | |
tree | 5b18b39a8e6f6c992e53b51fa16c31c36915672f /desktop | |
parent | 0310edd7dc1867a1f0736e463000dd0e08afae63 (diff) |
loplugin:stringconcat
Change-Id: I2ca9ebdce00fdaeeb2ee690fffd75b21e9acc14b
Diffstat (limited to 'desktop')
-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 f15a36e8061a..329b3a49a1fd 100644 --- a/desktop/source/app/crashreport.cxx +++ b/desktop/source/app/crashreport.cxx @@ -38,8 +38,8 @@ void CrashReporter::writeCommonInfo() std::string ini_path = CrashReporter::getIniFileName(); std::ofstream minidump_file(ini_path, std::ios_base::trunc); minidump_file << "ProductName=LibreOffice\n"; - minidump_file << "Version=" << LIBO_VERSION_DOTTED << "\n"; - minidump_file << "URL=" << "http://127.0.0.1:8000/submit" << "\n"; + minidump_file << "Version=" LIBO_VERSION_DOTTED "\n"; + minidump_file << "URL=http://127.0.0.1:8000/submit\n"; minidump_file.close(); } |