more wxUSE_IMAGE FUN

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32518 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton
2005-03-01 10:23:45 +00:00
parent 476a5decba
commit da76c2ce81

View File

@@ -170,6 +170,7 @@ bool wxIcon::LoadFile(const wxString& filename, wxBitmapType type,
} }
else else
{ {
#if wxUSE_IMAGE
wxImage loadimage(filename, type); wxImage loadimage(filename, type);
if (loadimage.Ok()) if (loadimage.Ok())
{ {
@@ -183,6 +184,9 @@ bool wxIcon::LoadFile(const wxString& filename, wxBitmapType type,
CopyFromBitmap( bmp ) ; CopyFromBitmap( bmp ) ;
return true; return true;
} }
#else
return false;
#endif
} }
} }
return true ; return true ;