X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1169a91932273bc84c23ed9dbd0a2da064d59d66..5c2ddebecd17d3b10957178ba30f2873c0ec4611:/src/os2/checklst.cpp diff --git a/src/os2/checklst.cpp b/src/os2/checklst.cpp index c0b1ac0ca0..6c06fa391b 100644 --- a/src/os2/checklst.cpp +++ b/src/os2/checklst.cpp @@ -42,15 +42,7 @@ #define GetItem(n) ((wxCheckListBoxItem *)(GetItem(n))) // ============================================================================ -// implementation of wxCheckListBoxBase -// ============================================================================ - -wxCheckListBoxBase::wxCheckListBoxBase() -{ -} - -// ============================================================================ -// implementation of wxCheckListBox +// implementation // ============================================================================ IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox) @@ -299,6 +291,31 @@ wxCheckListBox::wxCheckListBox ( ); } // end of wxCheckListBox::wxCheckListBox +wxCheckListBox::wxCheckListBox ( + wxWindow* pParent +, wxWindowID vId +, const wxPoint& rPos +, const wxSize& rSize +, const wxArrayString& asChoices +, long lStyle +, const wxValidator& rVal +, const wxString& rsName +) + : wxListBox() +{ + wxCArrayString chs(asChoices); + Create( pParent + ,vId + ,rPos + ,rSize + ,chs.GetCount() + ,chs.GetStrings() + ,lStyle | wxLB_OWNERDRAW + ,rVal + ,rsName + ); +} // end of wxCheckListBox::wxCheckListBox + void wxCheckListBox::Delete( int N )