]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/checklst.cpp
fixed crash in HitTest() with y position below the last line
[wxWidgets.git] / src / mac / carbon / checklst.cpp
index 2f43152c2a1ceae6beb1ea7bd062f1ce918100d2..b8401b16da67fbd275082c0f3096e7b21dda1667 100644 (file)
 #pragma implementation "checklst.h"
 #endif
 
+#include "wx/defs.h"
+
+#if wxUSE_CHECKLISTBOX
+
 #include "wx/checklst.h"
 
 // ============================================================================
@@ -40,7 +44,7 @@ END_EVENT_TABLE()
 // ----------------
 
 // def ctor: use Create() to really create the control
-wxCheckListBox::wxCheckListBox() : wxListBox()
+wxCheckListBox::wxCheckListBox() : wxCheckListBoxBase()
 {
 }
 
@@ -50,7 +54,7 @@ wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id,
                                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.
@@ -71,4 +75,5 @@ void wxCheckListBox::Check(size_t uiIndex, bool bCheck)
     // TODO
 }
 
+#endif // wxUSE_CHECKLISTBOX