]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/control.h
expat define MACOS_CLASSIC added
[wxWidgets.git] / include / wx / control.h
index 578d5262241d44f05fa9a618e5754bdff148db15..901615d51edec66ad3b88485c8b2c78e53a39e10 100644 (file)
@@ -20,6 +20,8 @@
     #pragma interface "controlbase.h"
 #endif
 
+#include "wx/defs.h"
+
 #if wxUSE_CONTROLS
 
 #include "wx/window.h"      // base class
@@ -33,6 +35,8 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxControlNameStr;
 class WXDLLEXPORT wxControlBase : public wxWindow
 {
 public:
+    wxControlBase() { }
+
     virtual ~wxControlBase();
 
     // Create() function adds the validator parameter
@@ -66,6 +70,8 @@ protected:
 
     // initialize the common fields of wxCommandEvent
     void InitCommandEvent(wxCommandEvent& event) const;
+
+    DECLARE_NO_COPY_CLASS(wxControlBase)
 };
 
 // ----------------------------------------------------------------------------