| 274 | } |
| 275 | |
| 276 | void ThemeBase::RecolourBitmap( int iIndex, wxColour From, wxColour To ) |
| 277 | { |
| 278 | wxImage Image( Bitmap( iIndex ).ConvertToImage() ); |
| 279 | |
| 280 | std::unique_ptr<wxImage> pResult = ChangeImageColour( |
| 281 | &Image, From, To ); |
| 282 | ReplaceImage( iIndex, pResult.get() ); |
| 283 | } |
| 284 | |
| 285 | int ThemeBase::ColourDistance( wxColour & From, wxColour & To ){ |
| 286 | return |
nothing calls this directly
no test coverage detected