summaryrefslogtreecommitdiff
path: root/desktop/source
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2017-03-29 16:55:17 +0200
committerAron Budea <aron.budea@collabora.com>2018-07-10 22:42:14 +0200
commit95a73f5e3222c4cbb9a77a12b37610b982ea1f06 (patch)
tree4d33969958cb09386980c71cc2a810951c940455 /desktop/source
parentc78a8065ec2ebda1df003bd16e4a810b6bd326fd (diff)
enable crashreport on Windows
(cherry picked from commit ce263269dff121af85634ada7870f33632e02bdd) Change-Id: I55df3da63919f76afcd4905b1898287e26c8c4f1
Diffstat (limited to 'desktop/source')
-rw-r--r--desktop/source/app/crashreport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/crashreport.cxx b/desktop/source/app/crashreport.cxx
index 29001367bb91..177a8750e513 100644
--- a/desktop/source/app/crashreport.cxx
+++ b/desktop/source/app/crashreport.cxx
@@ -76,7 +76,7 @@ void CrashReporter::writeCommonInfo()
ucbhelper::InternetProxyDecider proxy_decider(::comphelper::getProcessComponentContext());
const OUString protocol = "https";
- const OUString url = "crashreport.libreoffice.org";
+ const OUString url = "crashreport.collaboraoffice.com";
const sal_Int32 port = 443;
const ucbhelper::InternetProxyServer proxy_server = proxy_decider.getProxy(protocol, url, port);
@@ -84,7 +84,7 @@ void CrashReporter::writeCommonInfo()
// limit the amount of code that needs to be executed before the crash reporting
std::string ini_path = CrashReporter::getIniFileName();
std::ofstream minidump_file(ini_path, std::ios_base::trunc);
- minidump_file << "ProductName=LibreOffice\n";
+ minidump_file << "ProductName=CollaboraOffice\n";
minidump_file << "Version=" LIBO_VERSION_DOTTED "\n";
minidump_file << "BuildID=" << utl::Bootstrap::getBuildIdData("") << "\n";
minidump_file << "URL=" << protocol << "://" << url << "/submit/\n";