From 3bd7099bb46eacc228d7d338823bf1a223124238 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 3 Apr 2003 02:21:19 +0000 Subject: [PATCH] removed special case for wxMac, not needed any more git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@19951 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/gdi.i | 4 ---- 1 file changed, 4 deletions(-) diff --git a/wxPython/src/gdi.i b/wxPython/src/gdi.i index f749c6a1ef..e92404a0e2 100644 --- a/wxPython/src/gdi.i +++ b/wxPython/src/gdi.i @@ -330,11 +330,7 @@ public: %new wxCursor* wxCursorFromImage(const wxImage& image); %{ wxCursor* wxCursorFromImage(const wxImage& image) { - #ifndef __WXMAC__ return new wxCursor(image); - #else - return NULL; - #endif } %}