Wince fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26447 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2004-03-29 08:12:04 +00:00
parent 230c574313
commit 8155488b31

View File

@@ -46,6 +46,7 @@
// Set Unicode format for a common control // Set Unicode format for a common control
inline void wxSetCCUnicodeFormat(HWND hwnd) inline void wxSetCCUnicodeFormat(HWND hwnd)
{ {
#ifndef __WXWINCE__
SendMessage(hwnd, CCM_SETUNICODEFORMAT, SendMessage(hwnd, CCM_SETUNICODEFORMAT,
#if wxUSE_UNICODE #if wxUSE_UNICODE
TRUE TRUE
@@ -53,6 +54,8 @@ inline void wxSetCCUnicodeFormat(HWND hwnd)
FALSE FALSE
#endif #endif
, 0); , 0);
#endif
// __WXWINCE__
} }
#endif // _WX_MSW_WRAPCCTL_H_ #endif // _WX_MSW_WRAPCCTL_H_