summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-02-26 16:50:57 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-02-26 16:50:57 +0100
commit9d198be7395cc236fd3453de1005b5abeb2ed801 (patch)
tree288ba4ec0cdf59924af9a7625ada1760ddbbc811 /desktop
parentef10bb832a8cbb4e7ff0c55805b1b56f91c8c34f (diff)
loplugin:stringconcat
Change-Id: I39a55a9ac67aafa3f770509430b956e2fa81e6d8
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/sofficemain.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/sofficemain.cxx b/desktop/source/app/sofficemain.cxx
index b1b7dba113c5..866c19859f10 100644
--- a/desktop/source/app/sofficemain.cxx
+++ b/desktop/source/app/sofficemain.cxx
@@ -98,8 +98,8 @@ extern "C" int DESKTOP_DLLPUBLIC soffice_main()
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();
#if defined( UNX ) && !defined MACOSX && !defined IOS && !defined ANDROID