Events table serves for RTTI too.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30985 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2004-12-13 14:08:08 +00:00
parent f525dc5479
commit bb8d428f33

View File

@ -110,9 +110,13 @@ wxBEGIN_HANDLERS_TABLE(wxComboBox)
wxEND_HANDLERS_TABLE()
wxCONSTRUCTOR_5( wxComboBox , wxWindow* , Parent , wxWindowID , Id , wxString , Value , wxPoint , Position , wxSize , Size )
#else
IMPLEMENT_DYNAMIC_CLASS(wxComboBox, wxControl)
#endif
BEGIN_EVENT_TABLE(wxComboBox, wxControl)
EVT_MENU(wxID_CUT, wxComboBox::OnCut)
EVT_MENU(wxID_COPY, wxComboBox::OnCopy)
@ -131,8 +135,6 @@ BEGIN_EVENT_TABLE(wxComboBox, wxControl)
EVT_UPDATE_UI(wxID_SELECTALL, wxComboBox::OnUpdateSelectAll)
END_EVENT_TABLE()
#endif
// ----------------------------------------------------------------------------
// function prototypes
// ----------------------------------------------------------------------------
@ -686,8 +688,8 @@ void wxComboBox::GetSelection(long* from, long* to) const
}
int wxComboBox::GetSelection() const
{
return wxChoice::GetSelection();
{
return wxChoice::GetSelection();
}
// ----------------------------------------------------------------------------