]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/bitmap.h
Applied patch to add n bitmaps at once to an image
[wxWidgets.git] / include / wx / palmos / bitmap.h
index ef547bf64d0440a164b635b9b54ed3ee69a295c3..076784bc5a87cafc3f915fc38d781da15095f9f8 100644 (file)
@@ -41,9 +41,6 @@ public:
     // default ctor creates an invalid bitmap, you must Create() it later
     wxBitmap() { Init(); }
 
-    // Copy constructors
-    wxBitmap(const wxBitmap& bitmap) { Init(); Ref(bitmap); }
-
     // Initialize with raw data
     wxBitmap(const char bits[], int width, int height, int depth = 1);
 
@@ -81,13 +78,6 @@ public:
     // the copy ctor but the resulting bitmap is invalid!
     wxBitmap(const wxIcon& icon) { Init(); CopyFromIcon(icon); }
 
-    wxBitmap& operator=(const wxBitmap& bitmap)
-    {
-        if ( m_refData != bitmap.m_refData )
-            Ref(bitmap);
-        return *this;
-    }
-
     wxBitmap& operator=(const wxIcon& icon)
     {
         (void)CopyFromIcon(icon);