From da76c2ce81b4de07b083dd51d69a63fa71d24303 Mon Sep 17 00:00:00 2001 From: Ryan Norton Date: Tue, 1 Mar 2005 10:23:45 +0000 Subject: [PATCH] more wxUSE_IMAGE FUN git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32518 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/icon.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mac/carbon/icon.cpp b/src/mac/carbon/icon.cpp index 2317c91..4ec8afe 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 ; -- 2.7.4