summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-01 09:29:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-01 09:29:46 +0100
commit8ab503a871bf884187381f75cfd15808c340e5c5 (patch)
tree74689c6e4f97f7ba98040a97f3358164fb62ebb6
parent33e7228678813f20dd46d8218d0595ce03e022f1 (diff)
loplugin:sallogareas
Change-Id: I2cd994a4f497a59f33e6ed3a23388565fd7b88c2
-rw-r--r--svx/source/dialog/crashreportdlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/dialog/crashreportdlg.cxx b/svx/source/dialog/crashreportdlg.cxx
index 23f0bbe4f0b1..091432f73a5b 100644
--- a/svx/source/dialog/crashreportdlg.cxx
+++ b/svx/source/dialog/crashreportdlg.cxx
@@ -57,7 +57,7 @@ IMPL_LINK_TYPED(CrashReportDialog, BtnHdl, Button*, pBtn, void)
std::string ini_path = CrashReporter::getIniFileName();
OString aCommand = getLibDir().copy(7) + "/minidump_upload " + ini_path.c_str();
int retVal = std::system(aCommand.getStr());
- SAL_WARN_IF(retVal != 0, "crashreport", "Failed to upload minidump. Error Code: " << retVal);
+ SAL_WARN_IF(retVal != 0, "svx.dialog", "Failed to upload minidump. Error Code: " << retVal);
// TODO: moggi: return the id for the user to look it up
Close();
}