- inline wxAcceleratorTable& operator = (const wxAcceleratorTable& accel)
- { if (*this == accel) return (*this); Ref(accel); return *this; };
- inline bool operator == (const wxAcceleratorTable& accel)
- { return m_refData == accel.m_refData; };
- inline bool operator != (const wxAcceleratorTable& accel)
- { return m_refData != accel.m_refData; };
+ inline wxAcceleratorTable& operator = (const wxAcceleratorTable& rAccel)
+ { if (*this == rAccel) return (*this); Ref(rAccel); return *this; };
+ inline bool operator == (const wxAcceleratorTable& rAccel)
+ { return m_refData == rAccel.m_refData; };
+ inline bool operator != (const wxAcceleratorTable& rAccel)
+ { return m_refData != rAccel.m_refData; };