From 4360bc4eaea50530f67e14c2325e4f4014eca799 Mon Sep 17 00:00:00 2001 From: Ron Lee Date: Thu, 13 Apr 2000 17:19:30 +0000 Subject: [PATCH] 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 --- src/generic/logg.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/generic/logg.cpp b/src/generic/logg.cpp index 10968d32b0..a21c021b9b 100644 --- a/src/generic/logg.cpp +++ b/src/generic/logg.cpp @@ -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); }