wxBitmap compilation fix for BCC enforced typecast in resource.cpp

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9728 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2001-04-11 22:21:15 +00:00
parent e1a688e45e
commit ee7841ab13

View File

@ -2483,7 +2483,7 @@ wxBitmap wxResourceCreateBitmap(const wxString& resource, wxResourceTable *table
}
default:
{
return wxBitmap(name, bitmapType);
return wxBitmap(name, (wxBitmapType)bitmapType);
}
}
#ifndef __WXGTK__