From: Ryan Norton Date: Tue, 1 Mar 2005 10:23:45 +0000 (+0000) Subject: more wxUSE_IMAGE FUN X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/da76c2ce81b4de07b083dd51d69a63fa71d24303 more wxUSE_IMAGE FUN git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32518 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/icon.cpp b/src/mac/carbon/icon.cpp index 2317c911e5..4ec8afe377 100644 --- a/src/mac/carbon/icon.cpp +++ b/src/mac/carbon/icon.cpp @@ -170,6 +170,7 @@ bool wxIcon::LoadFile(const wxString& filename, wxBitmapType type, } else { +#if wxUSE_IMAGE wxImage loadimage(filename, type); if (loadimage.Ok()) { @@ -183,6 +184,9 @@ bool wxIcon::LoadFile(const wxString& filename, wxBitmapType type, CopyFromBitmap( bmp ) ; return true; } +#else + return false; +#endif } } return true ;