]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/accel.h
don't eat activation events (replaces patch 1465849)
[wxWidgets.git] / include / wx / mac / carbon / accel.h
index 25acc73bead86a3abd1c93f9f7a91e8c8e6bddd4..9702282af96241fc38b0d32810e5b8732b29501c 100644 (file)
 #ifndef _WX_ACCEL_H_
 #define _WX_ACCEL_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "accel.h"
-#endif
-
 #include "wx/string.h"
 #include "wx/event.h"
 
@@ -26,20 +22,11 @@ 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)
+    bool operator == (const wxAcceleratorTable& accel) const
     { return m_refData == accel.m_refData; }
-    bool operator != (const wxAcceleratorTable& accel)
+    bool operator != (const wxAcceleratorTable& accel) const
     { return m_refData != accel.m_refData; }
 
     bool Ok() const;