#pragma implementation "checklst.h"
#endif
+#include "wx/defs.h"
+
+#if wxUSE_CHECKLISTBOX
+
#include "wx/checklst.h"
// ============================================================================
// implementation
// ============================================================================
+#if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox)
+#endif
// ----------------------------------------------------------------------------
// implementation of wxCheckListBox class
// ----------------
// def ctor: use Create() to really create the control
-wxCheckListBox::wxCheckListBox() : wxListBox()
+wxCheckListBox::wxCheckListBox() : wxCheckListBoxBase()
{
}
int nStrings, const wxString choices[],
long style, const wxValidator& val,
const wxString& name)
- : wxListBox()
+ : wxCheckListBoxBase()
{
// TODO: you'll probably need a separate Create instead of using
// the wxListBox one as here.
// TODO
}
+#endif // wxUSE_CHECKLISTBOX