]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/accel.h
wxTinderbox build fix (!PCH support).
[wxWidgets.git] / include / wx / mac / carbon / accel.h
index 6d34d460d8f418288383554b09bf75def75ffbb7..9702282af96241fc38b0d32810e5b8732b29501c 100644 (file)
@@ -22,17 +22,8 @@ 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