wxGTK1 : adding missing ctors foe wxCursor & wxBitmap

This commit is contained in:
Jouk
2021-05-03 08:04:00 +02:00
parent 43beca8196
commit 0943beb241
4 changed files with 44 additions and 8 deletions

View File

@@ -18,6 +18,7 @@
#include "wx/icon.h"
#include "wx/math.h"
#include "wx/image.h"
#include "wx/cursor.h"
#endif // WX_PRECOMP
#include "wx/filefn.h"
@@ -1144,6 +1145,11 @@ wxBitmap::wxBitmap( const char bits[], int width, int height, int WXUNUSED(depth
}
}
wxBitmap::wxBitmap(const wxCursor& cursor)
{
wxUnusedVar(cursor);
}
wxBitmap::~wxBitmap()
{
}