]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/bitmap.cpp
better fix for infinite loop in HandleOnNavigationKey() when wxUSE_STL==1 and start_n...
[wxWidgets.git] / src / mgl / bitmap.cpp
index 56a422cc0f7266988675e7b7bc83e64940ea097e..3fdab5fe9c29e1fbf0895e6f0a4386f43a222c9e 100644 (file)
@@ -355,11 +355,6 @@ wxImage wxBitmap::ConvertToImage() const
     return image;
 }
 
-wxBitmap::wxBitmap(const wxBitmap& bmp)
-{
-    Ref(bmp);
-}
-
 wxBitmap::wxBitmap(const wxString &filename, wxBitmapType type)
 {
     LoadFile(filename, type);
@@ -379,13 +374,6 @@ wxBitmap::wxBitmap(const char bits[], int width, int height, int depth)
     delete bdc;
 }
 
-wxBitmap& wxBitmap::operator = (const wxBitmap& bmp)
-{
-    if ( *this == bmp ) return (*this);
-    Ref(bmp);
-    return *this;
-}
-
 bool wxBitmap::operator == (const wxBitmap& bmp) const
 {
     return (m_refData == bmp.m_refData);