From: Václav Slavík Date: Sat, 24 Apr 2010 07:06:11 +0000 (+0000) Subject: Fix typo in internat sample. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/10afaa0b97d8c47ea700f546a50ccf3ecd9a3acd Fix typo in internat sample. Catalog should be added with domain name ("wxstd"), not file name ("wxstd.mo"). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64116 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/internat/internat.cpp b/samples/internat/internat.cpp index c2ffd69059..c2fa8fcb36 100644 --- a/samples/internat/internat.cpp +++ b/samples/internat/internat.cpp @@ -252,7 +252,7 @@ bool MyApp::OnInit() // Now try to add wxstd.mo so that loading "NOTEXIST.ING" file will produce // a localized error message: - m_locale.AddCatalog("wxstd.mo"); + m_locale.AddCatalog("wxstd"); // NOTE: it's not an error if we couldn't find it! // this catalog is installed in standard location on Linux systems and