git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59019
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
inline wxPoint2DInt& wxPoint2DInt::operator=(const wxPoint2DInt& pt)
{
inline wxPoint2DInt& wxPoint2DInt::operator=(const wxPoint2DInt& pt)
{
- m_x = pt.m_x;
- m_y = pt.m_y;
+ if (this != &pt)
+ {
+ m_x = pt.m_x;
+ m_y = pt.m_y;
+ }
inline wxPoint2DDouble& wxPoint2DDouble::operator=(const wxPoint2DDouble& pt)
{
inline wxPoint2DDouble& wxPoint2DDouble::operator=(const wxPoint2DDouble& pt)
{
- m_x = pt.m_x;
- m_y = pt.m_y;
+ if (this != &pt)
+ {
+ m_x = pt.m_x;
+ m_y = pt.m_y;
+ }