svx/source/dialog/crashreportdlg.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
New commits: commit cb56b36dacd63cb9ee133cd90ee798db592ae0fc Author: Markus Mohrhard <[email protected]> Date: Mon Apr 17 00:29:14 2017 +0200 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 <[email protected]> Reviewed-by: Markus Mohrhard <[email protected]> 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(); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
