diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-04-17 00:29:14 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-04-17 03:08:39 +0200 |
commit | cb56b36dacd63cb9ee133cd90ee798db592ae0fc (patch) | |
tree | cd007edd177ee8889094b78f62ef712554afb7de /svx | |
parent | 8948d436572fcff6a7298872a33ca4b6fa2f8b61 (diff) |
make it possible to show crashreport error message
This will allow us to show a warning that a specific version is not
supported anymore and that people should update.
Change-Id: Ie7f4e4c49efa9ed91725bf3a0512663b3b14178c
Reviewed-on: https://gerrit.libreoffice.org/36589
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/crashreportdlg.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/svx/source/dialog/crashreportdlg.cxx b/svx/source/dialog/crashreportdlg.cxx index ed56b67678af..a2f00c5821dd 100644 --- a/svx/source/dialog/crashreportdlg.cxx +++ b/svx/source/dialog/crashreportdlg.cxx @@ -92,7 +92,9 @@ IMPL_LINK(CrashReportDialog, BtnHdl, Button*, pBtn, void) mpEditPostUpload->SetText(aProcessedMessage.replaceAll("~", "_")); } else - mpEditPostUpload->SetText("Error!"); + { + mpEditPostUpload->SetText(aCrashID); + } mpBtnClose->Show(); mpFtBugReport->Show(); |