]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/checkbox.h
Refactoring: no real changes.
[wxWidgets.git] / include / wx / checkbox.h
index 8ccb6539e3290b1d1cd15e370e71e2808aafc745..a011252b4321a2f423ac916684411374e1af38e6 100644 (file)
@@ -27,11 +27,16 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxCheckBoxNameStr;
 class WXDLLEXPORT wxCheckBoxBase : public wxControl
 {
 public:
+    wxCheckBoxBase() { }
+
     // set/get the checked status of the listbox
     virtual void SetValue(bool value) = 0;
     virtual bool GetValue() const = 0;
 
     bool IsChecked() const { return GetValue(); }
+
+private:
+    DECLARE_NO_COPY_CLASS(wxCheckBoxBase)
 };
 
 #if defined(__WXUNIVERSAL__)