]> git.saurik.com Git - wxWidgets.git/commitdiff
get rid of wxUSE_COMPATIBLE_COORD_TYPES, it is not used nor defined anywhere
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 3 Aug 2005 20:06:28 +0000 (20:06 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 3 Aug 2005 20:06:28 +0000 (20:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35074 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/defs.h

index 49a83a7488ba5288f9ca6e0b86a09499424b2c12..3bf1cd275e0309985ea435d80e0e5a89768b9fc0 100644 (file)
@@ -638,14 +638,7 @@ enum
 /*  ---------------------------------------------------------------------------- */
 
 /*  the type for screen and DC coordinates */
-
-#if wxUSE_COMPATIBLE_COORD_TYPES
-    /*  to ensure compatibility with 2.0, we must use long */
-    #define wxCoord long
-#else  /*  !wxUSE_COMPATIBLE_COORD_TYPES */
-        /*  other platforms we support have at least 32bit int - quite enough */
-        typedef int wxCoord;
-#endif /*  wxUSE_COMPATIBLE_COORD_TYPES/!wxUSE_COMPATIBLE_COORD_TYPES */
+typedef int wxCoord;
 
 enum {  wxDefaultCoord = -1 };