]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/bmpbuttn.cpp
fixed SaveDIB() crash with BW images (patch 1045884)
[wxWidgets.git] / src / gtk1 / bmpbuttn.cpp
index 55b275d0bbd14640befda1a0dce737788130797f..b209fabcc5a1d428dd815986a2a80cd753c467ba 100644 (file)
@@ -265,16 +265,7 @@ void wxBitmapButton::OnSetBitmap()
 
 wxSize wxBitmapButton::DoGetBestSize() const
 {
 
 wxSize wxBitmapButton::DoGetBestSize() const
 {
-    wxSize best;
-    
-    if (m_bmpNormal.Ok())
-    {
-        int border = HasFlag(wxNO_BORDER) ? 4 : 10;
-        best.x = m_bmpNormal.GetWidth()+border;
-        best.y = m_bmpNormal.GetHeight()+border;
-    }
-    CacheBestSize(best);
-    return best;
+    return wxControl::DoGetBestSize();
 }
 
 bool wxBitmapButton::Enable( bool enable )
 }
 
 bool wxBitmapButton::Enable( bool enable )