]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/intl.cpp
wxUSE_LOG fixes.
[wxWidgets.git] / src / common / intl.cpp
index 6f974e5e4be4d87a9df629abc7c11ac9a1ef3a6d..317cc06e042271012e75aaf3fa1a835af4995f49 100644 (file)
@@ -2339,6 +2339,11 @@ const wxLanguageInfo *wxLocale::GetLanguageInfo(int lang)
 {
     CreateLanguagesDB();
 
+    // calling GetLanguageInfo(wxLANGUAGE_DEFAULT) is a natural thing to do, so
+    // make it work
+    if ( lang == wxLANGUAGE_DEFAULT )
+        lang = GetSystemLanguage();
+
     const size_t count = ms_languagesDB->GetCount();
     for ( size_t i = 0; i < count; i++ )
     {