]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/accel.cpp
Moved all the coordinate system calculation to wxDCBase
[wxWidgets.git] / src / msw / accel.cpp
index b1451eedfe71bd53247412bc7890e63a5a0fb555..3b8355d05719bcdb4fce2a53e482b8083472aa58 100644 (file)
@@ -130,16 +130,6 @@ wxAcceleratorTable::wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]
     M_ACCELDATA->m_ok = (M_ACCELDATA->m_hAccel != 0);
 }
 
-bool wxAcceleratorTable::operator==(const wxAcceleratorTable& accel) const
-{
-    const wxAcceleratorRefData *
-        accelData = (wxAcceleratorRefData *)accel.m_refData;
-
-    return m_refData ? (accelData &&
-                           M_ACCELDATA->m_hAccel == accelData->m_hAccel)
-                     : !accelData;
-}
-
 bool wxAcceleratorTable::IsOk() const
 {
     return (M_ACCELDATA && (M_ACCELDATA->m_ok));