git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35368
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// Copy constructors
wxBitmap(const wxBitmap& bitmap)
// Copy constructors
wxBitmap(const wxBitmap& bitmap)
+ : wxBitmapBase()
+ {
+ Ref(bitmap);
+ }
// Initialize with raw data.
wxBitmap(const char bits[], int width, int height, int depth = 1);
// Initialize with raw data.
wxBitmap(const char bits[], int width, int height, int depth = 1);
// Copy constructors
wxIcon(const wxIcon& icon)
// Copy constructors
wxIcon(const wxIcon& icon)
+ : wxGDIObject()
+ {
+ Ref(icon);
+ }
wxIcon(const char **data);
wxIcon(char **data);
wxIcon(const char **data);
wxIcon(char **data);
void SetHeight(int h);
void SetDepth(int d);
void SetOk(bool isOk);
void SetHeight(int h);
void SetDepth(int d);
void SetOk(bool isOk);
WXHICON GetHICON() const ;
DECLARE_DYNAMIC_CLASS(wxIcon)
WXHICON GetHICON() const ;
DECLARE_DYNAMIC_CLASS(wxIcon)