X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/664ad22f4ca868dd87fe55f64627b61f1a7f89e7..bdaac0eba9817a4f00ead8ebb3bd5b4ea58c02e2:/src/common/resource.cpp diff --git a/src/common/resource.cpp b/src/common/resource.cpp index 782e63157c..4ba466c395 100644 --- a/src/common/resource.cpp +++ b/src/common/resource.cpp @@ -335,7 +335,14 @@ wxControl *wxResourceTable::CreateItem(wxWindow *parent, const wxItemResource* c ((wxItemResource*) childResource)->SetBitmap(bitmap); } if (!bitmap.Ok()) +#if defined(__WXPM__) + // + // OS/2 uses integer id's to access resources, not file name strings + // + bitmap.LoadFile(wxCROSS_BITMAP, wxBITMAP_TYPE_BMP_RESOURCE); +#else bitmap.LoadFile("cross_bmp", wxBITMAP_TYPE_BMP_RESOURCE); +#endif control = new wxBitmapButton(parent, id, bitmap, pos, size, childResource->GetStyle() | wxBU_AUTODRAW, wxDefaultValidator, childResource->GetName()); } @@ -2477,7 +2484,11 @@ wxBitmap wxResourceCreateBitmap(const wxString& resource, wxResourceTable *table } default: { +#if defined(__WXPM__) + return wxNullBitmap; +#else return wxBitmap(name, (wxBitmapType)bitmapType); +#endif } } #ifndef __WXGTK__