diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-02-25 11:40:46 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-02-25 11:40:46 +0100 |
commit | 92f013c38ac71969674e08aa453c01c030b3dbf7 (patch) | |
tree | e30a74890880d0deaee8daca18caf245b25292bb /desktop/source/app/sofficemain.cxx | |
parent | fde723ad7214682633ce73e428b0cc06ac4f18e9 (diff) |
loplugin:stringconcat
Change-Id: I6213a4102b019e3b509f4e0f2b632604dd1032d1
Diffstat (limited to 'desktop/source/app/sofficemain.cxx')
-rw-r--r-- | desktop/source/app/sofficemain.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/sofficemain.cxx b/desktop/source/app/sofficemain.cxx index d32f7b15fb86..e89dcdc3e0da 100644 --- a/desktop/source/app/sofficemain.cxx +++ b/desktop/source/app/sofficemain.cxx @@ -76,7 +76,7 @@ static bool dumpCallback(const google_breakpad::MinidumpDescriptor& descriptor, { // send the minidump to the server (not yet implemented) SAL_WARN("destkop.crashreport", "minidump generated: " << descriptor.path()); - OString aCommand = getLibDir().copy(7) + "/minidump_upload -p LibreOffice -v \"" + LIBO_VERSION_DOTTED + "\" "; + OString aCommand = getLibDir().copy(7) + "/minidump_upload -p LibreOffice -v \"" LIBO_VERSION_DOTTED "\" "; aCommand = aCommand + descriptor.path() + " http://libreofficecrash.org/submit"; int retVal = std::system(aCommand.getStr()); SAL_WARN_IF(retVal != 0, "destkop.crashreport", "Failed to upload minidump. Error Code: " << retVal); |