When calling DrawIconEx(), do not use DI_COMPAT or DI_DEFAULTSIZE on WinCE (fixes ticket #10200)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56852 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli
2008-11-19 16:29:47 +00:00
parent 15096961f9
commit 591df136d6

View File

@@ -1530,7 +1530,10 @@ void wxCursorProperty::OnCustomPaint( wxDC& dc,
0,
0,
NULL,
DI_COMPAT | DI_DEFAULTSIZE | DI_NORMAL
#if !defined(__WXWINCE__)
DI_COMPAT | DI_DEFAULTSIZE |
#endif
DI_NORMAL
);
#endif
}