compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24727 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-12-09 14:01:41 +00:00
parent ea3d4caf99
commit 552973e046

View File

@@ -349,7 +349,8 @@ void MyFrame::OnTest2(wxCommandEvent& WXUNUSED(event))
for (int n = first; n <= last; ++n) for (int n = first; n <= last; ++n)
{ {
s << n << _T(" ") << s << n << _T(" ") <<
wxGetTranslation("file deleted", "files deleted", n) << _T("\n"); wxGetTranslation(_T("file deleted"), _T("files deleted"), n) <<
_T("\n");
} }
wxMessageBox(s); wxMessageBox(s);
} }