git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41431
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
virtual wxSize DoGetBestSize() const;
// Event handlers
- void OnResize(wxSizeEvent& event);
+ void OnSize(wxSizeEvent& event);
// Recalculates amount of empty space needed in front of
// text in control itself.
BEGIN_EVENT_TABLE(wxBitmapComboBox, wxOwnerDrawnComboBox)
- EVT_SIZE(wxBitmapComboBox::OnResize)
+ EVT_SIZE(wxBitmapComboBox::OnSize)
END_EVENT_TABLE()
SetCustomPaintWidth(indent);
}
-void wxBitmapComboBox::OnResize(wxSizeEvent& event)
+void wxBitmapComboBox::OnSize(wxSizeEvent& event)
{
// Prevent infinite looping
if ( !m_inResize )