| 95 | #if wxCHECK_VERSION(3, 1, 6) |
| 96 | |
| 97 | void RoundedStaticBitmap::SetBitmap(const wxBitmapBundle& bitmap) |
| 98 | { |
| 99 | mImage = bitmap.GetBitmapFor(this).ConvertToImage(); |
| 100 | auto roundedImage = RoundedImage(mImage, mRadius); |
| 101 | wxStaticBitmap::SetBitmap(wxBitmapBundle::FromImage(roundedImage)); |
| 102 | } |
| 103 | |
| 104 | #else |
| 105 |
nothing calls this directly
no test coverage detected