From: Vadim Zeitlin Date: Sun, 29 Oct 2006 19:53:53 +0000 (+0000) Subject: some people disliked the asterisks in wxDebugReport dialog, removed (patch 1491869) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/96be8b4de06600dbab8ccf0bbe7d8b95732dd10a some people disliked the asterisks in wxDebugReport dialog, removed (patch 1491869) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42650 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/debugrpt.cpp b/src/common/debugrpt.cpp index 2391849334..9eeab34255 100644 --- a/src/common/debugrpt.cpp +++ b/src/common/debugrpt.cpp @@ -562,10 +562,10 @@ bool wxDebugReport::Process() bool wxDebugReport::DoProcess() { - wxString msg = _("*** A debug report has been generated\n"); - msg += wxString::Format(_("*** It can be found in \"%s\"\n"), - GetDirectory().c_str()); - msg += _("*** And includes the following files:\n"); + wxString msg(_("A debug report has been generated. It can be found in")); + msg << _T("\n") + _T("\t") << GetDirectory() << _T("\n\n") + << _("And includes the following files:\n"); wxString name, desc; const size_t count = GetFilesCount();