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)
EVT_UPDATE_UI(wxID_SELECTALL, wxComboBox::OnUpdateSelectAll)
END_EVENT_TABLE()
-#endif
-
// ----------------------------------------------------------------------------
// function prototypes
// ----------------------------------------------------------------------------
}
int wxComboBox::GetSelection() const
-{
- return wxChoice::GetSelection();
+{
+ return wxChoice::GetSelection();
}
// ----------------------------------------------------------------------------