#if wxUSE_IMAGLIST && !defined(wxHAS_NATIVE_IMAGELIST)
-#ifndef __WXPALMOS__
-
#include "wx/imaglist.h"
#ifndef WX_PRECOMP
}
else
{
- // Mimic behavior of Windows ImageList_Add that automatically breaks up the added
+ // Mimic behaviour of Windows ImageList_Add that automatically breaks up the added
// bitmap into sub-images of the correct size
if (m_width > 0 && bitmap.GetWidth() > m_width && bitmap.GetHeight() >= m_height)
{
int wxGenericImageList::Add( const wxBitmap& bitmap, const wxBitmap& mask )
{
wxBitmap bmp(bitmap);
- if (mask.Ok())
+ if (mask.IsOk())
bmp.SetMask(new wxMask(mask));
return Add(bmp);
}
m_images.Insert( next, newBitmap );
}
- if (mask.Ok())
+ if (mask.IsOk())
newBitmap->SetMask(new wxMask(mask));
return true;
return true;
}
-#endif // __WXPALMOS__
-
#endif // wxUSE_IMAGLIST