From 1392ea4b39ed0ef850c147a64a933f3f20646fcf Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 6 Dec 2008 18:53:43 +0000 Subject: [PATCH] replace __UNICODE__ with wxUSE_UNICODE git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@57144 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/tunicode.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/latex/wx/tunicode.tex b/docs/latex/wx/tunicode.tex index 606859f61f..8122dafa5d 100644 --- a/docs/latex/wx/tunicode.tex +++ b/docs/latex/wx/tunicode.tex @@ -89,7 +89,7 @@ To summarize, here is a brief example of how a program which can be compiled in both ANSI and Unicode modes could look like: \begin{verbatim} -#ifdef __UNICODE__ +#if wxUSE_UNICODE wchar_t wch = L'*'; const wchar_t *ws = L"Hello, world!"; int len = wcslen(ws);