Replaces both the image and the bitmap.
| 1266 | |
| 1267 | /// Replaces both the image and the bitmap. |
| 1268 | void ThemeBase::ReplaceImage( int iIndex, wxImage * pImage ) |
| 1269 | { |
| 1270 | Image( iIndex ) = *pImage; |
| 1271 | Bitmap( iIndex ) = wxBitmap( *pImage ); |
| 1272 | } |
| 1273 | |
| 1274 | void ThemeBase::RotateImageInto( int iTo, int iFrom, bool bClockwise ) |
| 1275 | { |
no test coverage detected