From: David Elliott Date: Sun, 10 Feb 2008 07:20:29 +0000 (+0000) Subject: Add wxCocoa to the list of ports which don't need wxColour to derive from wxGDIObject. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7234425be1f8f38e4310ca40d36f45ddb0522fd2 Add wxCocoa to the list of ports which don't need wxColour to derive from wxGDIObject. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51627 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/colour.h b/include/wx/colour.h index 80b36ec684..c6f0e91f23 100644 --- a/include/wx/colour.h +++ b/include/wx/colour.h @@ -58,7 +58,11 @@ DECLARE_VARIANT_OBJECT_EXPORTED(wxColour,WXDLLEXPORT) // code redundancy in all native wxColour implementations //----------------------------------------------------------------------------- -#if defined( __WXMAC__ ) || defined( __WXMSW__ ) || defined( __WXPM__ ) +/* Transition from wxGDIObject to wxObject is incomplete. If your port does + not need the wxGDIObject machinery to handle colors, please add it to the + list of ports which do not need it. + */ +#if defined( __WXMAC__ ) || defined( __WXMSW__ ) || defined( __WXPM__ ) || defined( __WXCOCOA__ ) #define wxCOLOUR_IS_GDIOBJECT 0 #else #define wxCOLOUR_IS_GDIOBJECT 1