#pragma implementation "checklst.h"
#endif
-#include "wx/checklst.h"
+#include "wx/defs.h"
#if wxUSE_CHECKLISTBOX
+#include "wx/checklst.h"
+
// ============================================================================
// implementation
// ============================================================================
// ----------------
// 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.