From e391f598c0f0ea5939423f13621ae366f3e770d8 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sun, 9 Aug 2009 15:55:56 +0000 Subject: [PATCH] Mark a couple of labels for translation. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@61631 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/dbgrptg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/generic/dbgrptg.cpp b/src/generic/dbgrptg.cpp index f809ca1cd3..c287de4330 100644 --- a/src/generic/dbgrptg.cpp +++ b/src/generic/dbgrptg.cpp @@ -333,9 +333,9 @@ wxDebugReportDialog::wxDebugReportDialog(wxDebugReport& dbgrpt) // ... and the list of files in this debug report with buttons to view them wxSizer *sizerFileBtns = new wxBoxSizer(wxVERTICAL); sizerFileBtns->AddStretchSpacer(1); - sizerFileBtns->Add(new wxButton(this, wxID_VIEW_DETAILS, _T("&View...")), + sizerFileBtns->Add(new wxButton(this, wxID_VIEW_DETAILS, _("&View...")), wxSizerFlags().Border(wxBOTTOM)); - sizerFileBtns->Add(new wxButton(this, wxID_OPEN, _T("&Open...")), + sizerFileBtns->Add(new wxButton(this, wxID_OPEN, _("&Open...")), wxSizerFlags().Border(wxTOP)); sizerFileBtns->AddStretchSpacer(1);