added missing wxBitmap(w, h, dc) ctor
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20197 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -434,6 +434,13 @@ wxBitmap::wxBitmap(int w, int h, int d)
|
|||||||
(void)Create(w, h, d);
|
(void)Create(w, h, d);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wxBitmap::wxBitmap(int w, int h, const wxDC& dc)
|
||||||
|
{
|
||||||
|
Init();
|
||||||
|
|
||||||
|
(void)Create(w, h, dc);
|
||||||
|
}
|
||||||
|
|
||||||
wxBitmap::wxBitmap(void *data, long type, int width, int height, int depth)
|
wxBitmap::wxBitmap(void *data, long type, int width, int height, int depth)
|
||||||
{
|
{
|
||||||
Init();
|
Init();
|
||||||
|
Reference in New Issue
Block a user