don't define ngettext, causes problems

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24608 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-11-19 20:51:05 +00:00
parent 6b9a6d772b
commit 9d814be8d0
2 changed files with 2 additions and 6 deletions

View File

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