From: David Elliott Date: Thu, 19 Jun 2003 21:32:16 +0000 (+0000) Subject: Added return NULL; for __WXCOCOA__ X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bfec7058d4c9f8d41c38ce1ddcbc2670548cf5c2 Added return NULL; for __WXCOCOA__ FIXME: The platform specific stuff is a real mess git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/gdicmn.cpp b/src/common/gdicmn.cpp index 1539beb7ba..c797b70ca2 100644 --- a/src/common/gdicmn.cpp +++ b/src/common/gdicmn.cpp @@ -357,6 +357,9 @@ wxColour *wxColourDatabase::FindColour(const wxString& colour) #ifdef __WXMAC__ return NULL; #endif +#ifdef __WXCOCOA__ + return NULL; +#endif #ifdef __WXSTUBS__ return NULL; #endif