]> git.saurik.com Git - wxWidgets.git/blobdiff - src/dfb/bitmap.cpp
Add new wxCommandLinkButton class.
[wxWidgets.git] / src / dfb / bitmap.cpp
index 4496298f13f70a5c77edf1018c7c791e18631484..35206ace5ff52c08376bb027b671e8bcf8618afe 100644 (file)
@@ -394,11 +394,6 @@ public:
 
 IMPLEMENT_DYNAMIC_CLASS(wxBitmap, wxBitmapBase)
 
-wxBitmap::wxBitmap(int width, int height, int depth)
-{
-    Create(width, height, depth);
-}
-
 bool wxBitmap::Create(const wxIDirectFBSurfacePtr& surface)
 {
     UnRef();
@@ -701,8 +696,7 @@ void wxBitmap::SetPalette(const wxPalette& palette)
     wxCHECK_RET( GetDepth() > 1 && GetDepth() <= 8, wxT("cannot set palette for bitmap of this depth") );
 
     AllocExclusive();
-    delete M_BITMAP->m_palette;
-    M_BITMAP->m_palette = NULL;
+    wxDELETE(M_BITMAP->m_palette);
 
     if ( !palette.Ok() ) return;