]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/wince/chkconf.h
Fix wxPropertyGrid::GetPropertyRect when the last item is collapsed.
[wxWidgets.git] / include / wx / msw / wince / chkconf.h
index e22caac0695f5d509f3b8e6470d32206ca87e0ef..00785067ee7ace63bee096ee142bfff2c6d3c35b 100644 (file)
@@ -4,7 +4,6 @@
 // Author:      Vadim Zeitlin
 // Modified by:
 // Created:     2005-03-07
-// RCS-ID:      $Id$
 // Copyright:   (c) 2005 Vadim Zeitlin <vadim@wxwindows.org>
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
     #define wxUSE_DISPLAY 0
 #endif
 
+// eVC doesn't have standard streams
+#ifdef __EVC4__
+    #undef wxUSE_STD_IOSTREAM
+    #define wxUSE_STD_IOSTREAM 0
+#endif
+
 // wxFSVolume currently doesn't compile under CE and it's not clear if it makes
 // sense at all there (the drives and their names are fixed on CE systems)
 #undef wxUSE_FSVOLUME
@@ -46,7 +51,7 @@
 #define wxUSE_JOYSTICK 0
 
 // libtiff doesn't build with eVC but is ok with VC8
-#if !wxCHECK_VISUALC_VERSION(8)
+#ifdef __EVC4__
     #undef wxUSE_LIBTIFF
     #define wxUSE_LIBTIFF 0
 #endif
@@ -84,7 +89,7 @@
 #define wxUSE_PRINTING_ARCHITECTURE 0
 
 // regex doesn't build with eVC but is ok with VC8
-#if !wxCHECK_VISUALC_VERSION(8)
+#ifdef __EVC4__
     #undef wxUSE_REGEX
     #define wxUSE_REGEX 0
 #endif
     #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_