X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..7b4fde8255e2c5495b5c7c2b3234d19ac8c1e7cf:/include/wx/os2/accel.h diff --git a/include/wx/os2/accel.h b/include/wx/os2/accel.h index d2bbda40c0..60f3de60c0 100644 --- a/include/wx/os2/accel.h +++ b/include/wx/os2/accel.h @@ -6,7 +6,7 @@ // Created: 10/13/99 // RCS-ID: $Id$ // Copyright: (c) David Webster -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_ACCEL_H_ @@ -38,14 +38,8 @@ public: ,const wxAcceleratorEntry vaEntries[] ); // Load from array - // Copy constructors - inline wxAcceleratorTable(const wxAcceleratorTable& rAccel) { Ref(rAccel); } - inline wxAcceleratorTable(const wxAcceleratorTable* pAccel) { if (pAccel) Ref(*pAccel); } - ~wxAcceleratorTable(); - inline wxAcceleratorTable& operator = (const wxAcceleratorTable& rAccel) - { if (*this == rAccel) return (*this); Ref(rAccel); return *this; }; inline bool operator== (const wxAcceleratorTable& rAccel) const { return m_refData == rAccel.m_refData; }; inline bool operator!= (const wxAcceleratorTable& rAccel) const