]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix
authorVáclav Slavík <vslavik@fastmail.fm>
Tue, 9 Dec 2003 14:01:41 +0000 (14:01 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Tue, 9 Dec 2003 14:01:41 +0000 (14:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24727 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/internat/internat.cpp

index 1bf57ba9a401e92eab9d232cb0856cfaf1ab7293..71304b917d7c5e9911827450dcf4198972c24121 100644 (file)
@@ -348,8 +348,9 @@ void MyFrame::OnTest2(wxCommandEvent& WXUNUSED(event))
        s << _T("\n");
        for (int n = first; n <= last; ++n)
         {
-                   s << n << _T(" ") << 
-                     wxGetTranslation("file deleted", "files deleted", n) << _T("\n");
+            s << n << _T(" ") << 
+                wxGetTranslation(_T("file deleted"), _T("files deleted"), n) <<
+                _T("\n");
        }
         wxMessageBox(s);
     }