From 9d198be7395cc236fd3453de1005b5abeb2ed801 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 26 Feb 2016 16:50:57 +0100 Subject: loplugin:stringconcat Change-Id: I39a55a9ac67aafa3f770509430b956e2fa81e6d8 --- desktop/source/app/sofficemain.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desktop/source/app/sofficemain.cxx') 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 -- cgit