[Libreoffice-commits] core.git: desktop/source

Stephan Bergmann sbergman at redhat.com
Fri Feb 26 15:51:33 UTC 2016


 desktop/source/app/sofficemain.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 9d198be7395cc236fd3453de1005b5abeb2ed801
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Fri Feb 26 16:50:57 2016 +0100

    loplugin:stringconcat
    
    Change-Id: I39a55a9ac67aafa3f770509430b956e2fa81e6d8

diff --git a/desktop/source/app/sofficemain.cxx b/desktop/source/app/sofficemain.cxx
index b1b7dba..866c198 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


More information about the Libreoffice-commits mailing list