X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f8855e47254a28f5141524b3aaaac03c2944e997..eef1a0cc63093cdffdc0f718c80f413c33c0562d:/include/wx/mac/classic/accel.h?ds=sidebyside diff --git a/include/wx/mac/classic/accel.h b/include/wx/mac/classic/accel.h index 9702282af9..742b460190 100644 --- a/include/wx/mac/classic/accel.h +++ b/include/wx/mac/classic/accel.h @@ -22,14 +22,15 @@ public: wxAcceleratorTable(); 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; int GetCommand( wxKeyEvent &event ); };