]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/accel.h
avoid GCC warning about type-punned pointer breaking strict aliasing rules
[wxWidgets.git] / include / wx / motif / accel.h
index f51093d326af315bfcfee9fcaf5bc04afa8abc9e..7753ac9d6872284c92d1c240fa856ff0081de641 100644 (file)
@@ -24,12 +24,10 @@ public:
     wxAcceleratorTable(const wxString& resource); // Load from .rc resource
     wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]); // Load from array
 
-    ~wxAcceleratorTable();
+    virtual ~wxAcceleratorTable();
 
-    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;
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const;
 
     // Implementation only
     int GetCount() const;