added missing wxTRANSLATE for 'Details'

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7155 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ron Lee
2000-04-13 17:19:30 +00:00
parent 970047bbc3
commit 4360bc4eae

View File

@@ -676,8 +676,9 @@ wxLogDialog::wxLogDialog(wxWindow *parent,
{
if ( ms_details.IsEmpty() )
{
// ensure that we won't try to call wxGetTranslation() twice
ms_details = _T("&Details");
// ensure that we won't loop here if wxGetTranslation()
// happens to pop up a Log message while translating this :-)
ms_details = wxTRANSLATE("&Details");
ms_details = wxGetTranslation(ms_details);
}