Incomplete setup build fix (wxPalmOS).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32812 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-03-14 10:19:26 +00:00
parent 0d727861fe
commit a376ab3039

View File

@@ -201,6 +201,7 @@ wxBitmap wxDefaultArtProvider::CreateBitmap(const wxArtID& id,
{ {
wxBitmap bmp = wxDefaultArtProvider_CreateBitmap(id); wxBitmap bmp = wxDefaultArtProvider_CreateBitmap(id);
#if wxUSE_IMAGE
if (bmp.Ok()) if (bmp.Ok())
{ {
// fit into transparent image with desired size hint from the client // fit into transparent image with desired size hint from the client
@@ -223,5 +224,7 @@ wxBitmap wxDefaultArtProvider::CreateBitmap(const wxArtID& id,
} }
} }
} }
#endif // wxUSE_IMAGE
return bmp; return bmp;
} }