desktop/source/app/crashreport.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 7916f250c42ccb7624feb1a1f6524e2aac3a1036 Author: Stephan Bergmann <[email protected]> Date: Tue Mar 1 08:52:59 2016 +0100 loplugin:stringconcat Change-Id: I2ca9ebdce00fdaeeb2ee690fffd75b21e9acc14b diff --git a/desktop/source/app/crashreport.cxx b/desktop/source/app/crashreport.cxx index f15a36e..329b3a4 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(); } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
