- const wxString& name) // , const wxFont& font)
- // don't use ctor with arguments! we must call Create()
- // ourselves from here.
- : wxListBox()
-// , m_font(font)
+ const wxString& name)
+{
+ Create(parent, id, pos, size, nStrings, choices, style, val, name);
+}
+
+bool wxCheckListBox::Create(wxWindow *parent, wxWindowID id,
+ const wxPoint& pos, const wxSize& size,
+ int n, const wxString choices[],
+ long style,
+ const wxValidator& validator, const wxString& name)
+{
+ return wxListBox::Create(parent, id, pos, size, n, choices,
+ style | wxLB_OWNERDRAW, validator, name);
+}
+
+// misc overloaded methods
+// -----------------------
+
+void wxCheckListBox::Delete(int N)