void wxSpinCtrl::SetSelection(long from, long to)
{
- // translate from wxWindows conventions to GTK+ ones: (-1, -1) means the
+ // translate from wxWidgets conventions to GTK+ ones: (-1, -1) means the
// entire range
if ( from == -1 && to == -1 )
{
return FALSE;
}
-void wxSpinCtrl::ApplyWidgetStyle()
-{
- SetWidgetStyle();
- gtk_widget_set_style( m_widget, m_widgetStyle );
-}
-
wxSize wxSpinCtrl::DoGetBestSize() const
{
wxSize ret( wxControl::DoGetBestSize() );
- return wxSize(95, ret.y);
+ wxSize best(95, ret.y);
+ CacheBestSize(best);
+ return best;
}
// static