From 10de049c42e189b5b612ba5009d745331cd648bb Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 13 Jun 2007 14:19:24 +0000 Subject: [PATCH] Unicode compilation fix: wxStrlocale() doesn't take wide strings git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46444 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/strings/strings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/strings/strings.cpp b/tests/strings/strings.cpp index 9c913cc0dc..c679d4423e 100644 --- a/tests/strings/strings.cpp +++ b/tests/strings/strings.cpp @@ -633,7 +633,7 @@ void StringTestCase::ToDouble() // we need to use decimal point, not comma or whatever is its value for the // current locale - wxSetlocale(LC_ALL, _T("C")); + wxSetlocale(LC_ALL, "C"); size_t n; for ( n = 0; n < WXSIZEOF(doubleData); n++ )