get rid of wxUSE_COMPATIBLE_COORD_TYPES, it is not used nor defined anywhere

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35074 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-08-03 20:06:28 +00:00
parent 2e85922c96
commit 376a8ce2d4

View 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 };