]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/accel.h
Fix for mistake with const for non pointer/reference with corrections in documentation.
[wxWidgets.git] / include / wx / mac / carbon / accel.h
index 25acc73bead86a3abd1c93f9f7a91e8c8e6bddd4..6d34d460d8f418288383554b09bf75def75ffbb7 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"
 
@@ -37,9 +33,9 @@ public:
 
     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;