blind fix for eVC compilation with wxEVENTS_COMPATIBILITY_2_8==0 (hopefully closes #10714)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60234 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2009-04-18 12:23:51 +00:00
parent 15cb637c96
commit 89574e1d55

View File

@ -141,5 +141,13 @@
#define wxUSE_COLOURDLG 0
#endif // __SMARTPHONE__
// eVC can't compile template Bind() but VC8 can
#if !wxEVENTS_COMPATIBILITY_2_8
# if !wxCHECK_VISUALC_VERSION(8)
# undef wxEVENTS_COMPATIBILITY_2_8
# define wxEVENTS_COMPATIBILITY_2_8 1
# endif
#endif
#endif // _WX_MSW_WINCE_CHKCONF_H_