private:
wxMask *m_bitmapMask;
- DECLARE_NO_COPY_CLASS(wxBitmapRefData)
+ wxDECLARE_NO_COPY_CLASS(wxBitmapRefData);
};
// ----------------------------------------------------------------------------
#endif // NEVER_USE_DIB
-wxBitmap::~wxBitmap()
-{
-}
-
wxBitmap::wxBitmap(const char bits[], int width, int height, int depth)
{
Init();
}
-wxBitmap::wxBitmap(int w, int h, int d)
-{
-}
-
wxBitmap::wxBitmap(int w, int h, const wxDC& dc)
{
}
#if wxUSE_PALETTE
wxPalette* wxBitmap::GetPalette() const
{
- return (wxPalette *) NULL;
+ return NULL;
}
#endif
wxMask *wxBitmap::GetMask() const
{
- return (wxMask *) NULL;
+ return NULL;
}
#ifdef __WXDEBUG__
wxDC *wxBitmap::GetSelectedInto() const
{
- return (wxDC *) NULL;
+ return NULL;
}
#endif