From: Václav Slavík Date: Fri, 19 Jan 2007 23:25:39 +0000 (+0000) Subject: fixed typo in code for setting alternative locale name X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/01ad5e43bfb45c4d7622f2d615dd28a411e60367 fixed typo in code for setting alternative locale name git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44264 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/intl.cpp b/src/common/intl.cpp index 9a2dc00536..8b7a9c9426 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -1719,7 +1719,7 @@ bool wxLocale::Init(int language, int flags) { retloc = wxSetlocaleTryUTF(LC_ALL, localeAlt); if ( !retloc ) - retloc = wxSetlocaleTryUTF(LC_ALL, locale.Left(2)); + retloc = wxSetlocaleTryUTF(LC_ALL, localeAlt.Left(2)); } }