X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1169a91932273bc84c23ed9dbd0a2da064d59d66..024f89f972a6787e82d77fc5e5dac302a56abbb0:/src/univ/choice.cpp diff --git a/src/univ/choice.cpp b/src/univ/choice.cpp index 35567aca1b..19c7cb72ff 100644 --- a/src/univ/choice.cpp +++ b/src/univ/choice.cpp @@ -31,29 +31,38 @@ #ifndef WX_PRECOMP #include "wx/choice.h" + #include "wx/arrstr.h" #endif IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControl) BEGIN_EVENT_TABLE(wxChoice, wxComboBox) - EVT_COMBOBOX(-1, wxChoice::OnComboBox) + EVT_COMBOBOX(wxID_ANY, wxChoice::OnComboBox) END_EVENT_TABLE() -wxChoice::wxChoice() -{ -} - -wxChoice::wxChoice(wxWindow *parent, - wxWindowID id, +wxChoice::wxChoice(wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxSize& size, - int n, - const wxString choices[], + const wxArrayString& choices, long style, const wxValidator& validator, const wxString& name) { - Create(parent, id, pos, size, n, choices, style, validator, name); + Create(parent, id, pos, size, choices, style, validator, name); +} + +bool wxChoice::Create(wxWindow *parent, wxWindowID id, + const wxPoint& pos, + const wxSize& size, + const wxArrayString& choices, + long style, + const wxValidator& validator, + const wxString& name) +{ + wxCArrayString chs(choices); + + return Create(parent, id, pos, size, chs.GetCount(), chs.GetStrings(), + style, validator, name); } bool wxChoice::Create(wxWindow *parent, wxWindowID id,