]> git.saurik.com Git - wxWidgets.git/commitdiff
blind fix for eVC compilation with wxEVENTS_COMPATIBILITY_2_8==0 (hopefully closes...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 18 Apr 2009 12:23:51 +0000 (12:23 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 18 Apr 2009 12:23:51 +0000 (12:23 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60234 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/wince/chkconf.h

index 7024f8ad645ae8c60ab8d71beee981467d3b5c6c..e22caac0695f5d509f3b8e6470d32206ca87e0ef 100644 (file)
     #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_