]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/accel.h
Hartwig's patch for OS X implementation of wxDataViewCtrl
[wxWidgets.git] / include / wx / mac / carbon / accel.h
index 6d34d460d8f418288383554b09bf75def75ffbb7..cf0ce7692786f15f665c970099daeef7f8d9aa10 100644 (file)
@@ -22,23 +22,10 @@ public:
     wxAcceleratorTable();
     wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]); // Load from array
 
-    // Copy constructors
-    wxAcceleratorTable(const wxAcceleratorTable& accel)
-        : wxObject()
-    { Ref(accel); }
-    wxAcceleratorTable(const wxAcceleratorTable* accel)
-    { if (accel) Ref(*accel); }
-
-    ~wxAcceleratorTable();
-
-    wxAcceleratorTable& operator = (const wxAcceleratorTable& accel)
-    { if (*this == accel) return (*this); Ref(accel); return *this; }
-    bool operator == (const wxAcceleratorTable& accel) const
-    { return m_refData == accel.m_refData; }
-    bool operator != (const wxAcceleratorTable& accel) const
-    { return m_refData != accel.m_refData; }
-
-    bool Ok() const;
+    virtual ~wxAcceleratorTable();
+
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const;
 
     int GetCommand( wxKeyEvent &event );
 };