]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/checklst.h
fixed Cygwin compilation (there's no _get_osfhandle)
[wxWidgets.git] / include / wx / checklst.h
index 22f76f3812bcb81fc9babd221e188726802ef357..8e33246ecade3c81e5b241d967479519b4d182e2 100644 (file)
 class WXDLLEXPORT wxCheckListBoxBase : public wxListBox
 {
 public:
+    wxCheckListBoxBase() { }
+
     // check list box specific methods
     virtual bool IsChecked(size_t item) const = 0;
-    virtual void Check(size_t item, bool check = TRUE) = 0;
+    virtual void Check(size_t item, bool check = true) = 0;
+
+    DECLARE_NO_COPY_CLASS(wxCheckListBoxBase)
 };
 
 #if defined(__WXUNIVERSAL__)