X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1169a91932273bc84c23ed9dbd0a2da064d59d66..f925e7b4f3d017b33749bd23a64592c1985e8f98:/src/gtk/checklst.cpp diff --git a/src/gtk/checklst.cpp b/src/gtk/checklst.cpp index 0f754b7d52..45bc4adc20 100644 --- a/src/gtk/checklst.cpp +++ b/src/gtk/checklst.cpp @@ -24,14 +24,6 @@ #include #include -//----------------------------------------------------------------------------- -// wxCheckListBoxBase -//----------------------------------------------------------------------------- - -wxCheckListBoxBase::wxCheckListBoxBase() -{ -} - //----------------------------------------------------------------------------- // wxCheckListBox //----------------------------------------------------------------------------- @@ -56,6 +48,19 @@ wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id, wxListBox::Create( parent, id, pos, size, nStrings, choices, style, validator, name ); } +wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id, + const wxPoint& pos, + const wxSize& size, + const wxArrayString& choices, + long style, + const wxValidator& validator, + const wxString& name ) +{ + m_hasCheckBoxes = TRUE; + wxListBox::Create( parent, id, pos, size, choices, + style, validator, name ); +} + bool wxCheckListBox::IsChecked( int index ) const { wxCHECK_MSG( m_list != NULL, FALSE, wxT("invalid checklistbox") );