From 376a8ce2d48ccc0aa438e2a02fdc58b099fd2106 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 3 Aug 2005 20:06:28 +0000 Subject: [PATCH] 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 --- include/wx/defs.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/include/wx/defs.h b/include/wx/defs.h index 49a83a7488..3bf1cd275e 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -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 }; -- 2.45.2