]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/bitmap.cpp
corrections for buffers
[wxWidgets.git] / src / msw / bitmap.cpp
index 12294cdc71130308123c380562ab7120813eaa3e..ad7929de219c2fc9d8c1451edd62f63868e0b862 100644 (file)
@@ -362,47 +362,6 @@ wxBitmap::~wxBitmap()
 {
 }
 
-wxBitmap::wxBitmap()
-{
-    Init();
-}
-
-wxBitmap::wxBitmap(const wxBitmap& bitmap)
-{
-    Init();
-    Ref(bitmap);
-}
-
-wxBitmap::wxBitmap(const char **data)
-{
-    CreateFromXpm(data);
-}
-
-wxBitmap::wxBitmap(char **data)
-{
-    CreateFromXpm((const char **)data);
-}
-
-#if wxUSE_IMAGE
-
-wxBitmap::wxBitmap(const wxImage& image, int depth)
-{
-    (void)CreateFromImage(image, depth);
-}
-
-wxBitmap::wxBitmap(const wxImage& image, const wxDC& dc)
-{
-    (void)CreateFromImage(image, dc);
-}
-
-#endif // wxUSE_IMAGE
-
-wxBitmap::wxBitmap(const wxIcon& icon)
-{
-    Init();
-    CopyFromIcon(icon);
-}
-
 wxBitmap::wxBitmap(const char bits[], int width, int height, int depth)
 {
     Init();
@@ -561,10 +520,6 @@ bool wxBitmap::DoCreate(int w, int h, int d, WXHDC hdc)
     else // create a DDB
 #endif
     {
-        if ( d == -1 )
-            d = wxDisplayDepth();
-
-        GetBitmapData()->m_depth = d;
 
 #ifndef __WXMICROWIN__
         if ( d > 0 )