From 5d7792236f7e4fcbb94cdc2a5213e0c5788e8c28 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 9 Mar 2010 11:08:52 +0000 Subject: [PATCH] Use _UNICODE instead of UNICODE in wx/msw/winundef.h. This is consistent with the other checks and generally more correct. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63658 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msw/winundef.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/msw/winundef.h b/include/wx/msw/winundef.h index a3fd4e2ce7..41cea6dc90 100644 --- a/include/wx/msw/winundef.h +++ b/include/wx/msw/winundef.h @@ -123,11 +123,11 @@ inline HWND APIENTRY FindText(LPFINDREPLACE lpfindreplace) { - #ifdef UNICODE + #ifdef _UNICODE return FindTextW(lpfindreplace); #else return FindTextA(lpfindreplace); - #endif // !UNICODE + #endif } #endif -- 2.45.2