Implement wxBitmap(const wxCursor&) constructor for OSX

This commit is contained in:
Igor Korot
2020-07-29 09:45:28 +02:00
committed by Maarten Bent
parent 0ff1bdec09
commit 9394d26c40
5 changed files with 18 additions and 3 deletions

View File

@@ -126,6 +126,11 @@ public:
// Convert from wxIcon
wxBitmap(const wxIcon& icon) { CopyFromIcon(icon); }
#if wxOSX_USE_COCOA
// Convert from wxCursor
wxBitmap(const wxCursor &cursor);
#endif
virtual ~wxBitmap() {}
wxImage ConvertToImage() const wxOVERRIDE;