]> git.saurik.com Git - wxWidgets.git/commitdiff
fix harmless unused variable warning under CE
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 21 Feb 2008 16:14:10 +0000 (16:14 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 21 Feb 2008 16:14:10 +0000 (16:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51964 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/intl.cpp

index 62967e53c77fd4848acde9968e4135328a003f29..bd4a1953e332e6493b66b9bb62a8795db1122fc7 100644 (file)
@@ -1842,11 +1842,11 @@ bool wxLocale::Init(int language, int flags)
         }
         else // language supported by Windows
         {
-            const wxUint32 lcid = info->GetLCID();
-
             // Windows CE doesn't have SetThreadLocale() and there doesn't seem
             // to be any equivalent
 #ifndef __WXWINCE__
+            const wxUint32 lcid = info->GetLCID();
+
             // change locale used by Windows functions
             ::SetThreadLocale(lcid);
 #endif