No changes, just remove unnecessary wxPickerBase::OnSize().
This method did the same thing as the base wxWindow class event handler. Also remove wxPickerBase event table which became empty after removing this method. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68368 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -43,11 +43,6 @@
|
||||
|
||||
IMPLEMENT_ABSTRACT_CLASS(wxPickerBase, wxControl)
|
||||
|
||||
BEGIN_EVENT_TABLE(wxPickerBase, wxControl)
|
||||
EVT_SIZE(wxPickerBase::OnSize)
|
||||
END_EVENT_TABLE()
|
||||
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// wxPickerBase
|
||||
// ----------------------------------------------------------------------------
|
||||
@@ -177,11 +172,4 @@ void wxPickerBase::OnTextCtrlUpdate(wxCommandEvent &)
|
||||
UpdatePickerFromTextCtrl();
|
||||
}
|
||||
|
||||
void wxPickerBase::OnSize(wxSizeEvent &event)
|
||||
{
|
||||
if (GetAutoLayout())
|
||||
Layout();
|
||||
event.Skip();
|
||||
}
|
||||
|
||||
#endif // Any picker in use
|
||||
|
||||
Reference in New Issue
Block a user