]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/gauge.cpp
This commit was generated by cvs2svn to compensate for changes in r30285,
[wxWidgets.git] / src / gtk / gauge.cpp
index 7fe754a52e2f6a68a1ac1de0925ea6e787a1f43e..985c42bcc3dcd148f6cb3ca79fd30fcf38773eea 100644 (file)
@@ -72,10 +72,13 @@ void wxGauge::DoSetGauge()
 
 wxSize wxGauge::DoGetBestSize() const
 {
+    wxSize best;
     if (HasFlag(wxGA_VERTICAL))
-        return wxSize(28, 100);
+        best = wxSize(28, 100);
     else
-        return wxSize(100, 28);
+        best = wxSize(100, 28);
+    CacheBestSize(best);
+    return best;
 }
 
 void wxGauge::SetRange( int range )
@@ -106,12 +109,6 @@ int wxGauge::GetValue() const
     return m_gaugePos;
 }
 
-void wxGauge::ApplyWidgetStyle()
-{
-    SetWidgetStyle();
-    gtk_widget_set_style( m_widget, m_widgetStyle );
-}
-
 wxVisualAttributes wxGauge::GetDefaultAttributes() const
 {
     // Visible gauge colours use a different colour state