]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed previous revision: call wxControl's, not wxButton's DoGetBestSize
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 18 Oct 2004 13:13:39 +0000 (13:13 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 18 Oct 2004 13:13:39 +0000 (13:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29968 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/bmpbuttn.h
include/wx/gtk1/bmpbuttn.h
src/gtk/bmpbuttn.cpp
src/gtk1/bmpbuttn.cpp

index 473991447b3d8748012bf32ff5451049430b78b8..f4d71460df7ae126d2d614ae116f73ebcb7e62fc 100644 (file)
@@ -68,6 +68,7 @@ public:
 
 protected:
     virtual void OnSetBitmap();
 
 protected:
     virtual void OnSetBitmap();
+    virtual wxSize DoGetBestSize() const;
 
     void Init();
 
 
     void Init();
 
index 473991447b3d8748012bf32ff5451049430b78b8..f4d71460df7ae126d2d614ae116f73ebcb7e62fc 100644 (file)
@@ -68,6 +68,7 @@ public:
 
 protected:
     virtual void OnSetBitmap();
 
 protected:
     virtual void OnSetBitmap();
+    virtual wxSize DoGetBestSize() const;
 
     void Init();
 
 
     void Init();
 
index 7b51da0f9d3b0a5bbdc7ee6ba6ede75144cecf33..b209fabcc5a1d428dd815986a2a80cd753c467ba 100644 (file)
@@ -263,6 +263,11 @@ void wxBitmapButton::OnSetBitmap()
     }
 }
 
     }
 }
 
+wxSize wxBitmapButton::DoGetBestSize() const
+{
+    return wxControl::DoGetBestSize();
+}
+
 bool wxBitmapButton::Enable( bool enable )
 {
     if ( !wxWindow::Enable(enable) )
 bool wxBitmapButton::Enable( bool enable )
 {
     if ( !wxWindow::Enable(enable) )
index 7b51da0f9d3b0a5bbdc7ee6ba6ede75144cecf33..b209fabcc5a1d428dd815986a2a80cd753c467ba 100644 (file)
@@ -263,6 +263,11 @@ void wxBitmapButton::OnSetBitmap()
     }
 }
 
     }
 }
 
+wxSize wxBitmapButton::DoGetBestSize() const
+{
+    return wxControl::DoGetBestSize();
+}
+
 bool wxBitmapButton::Enable( bool enable )
 {
     if ( !wxWindow::Enable(enable) )
 bool wxBitmapButton::Enable( bool enable )
 {
     if ( !wxWindow::Enable(enable) )