From: Vadim Zeitlin Date: Tue, 9 Mar 2010 11:08:52 +0000 (+0000) Subject: Use _UNICODE instead of UNICODE in wx/msw/winundef.h. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5d7792236f7e4fcbb94cdc2a5213e0c5788e8c28 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 --- 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