git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64550
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxPoint() : x(0), y(0) { }
wxPoint(int xx, int yy) : x(xx), y(yy) { }
wxPoint() : x(0), y(0) { }
wxPoint(int xx, int yy) : x(xx), y(yy) { }
- wxPoint(const wxRealPoint& pt) : x(pt.x), y(pt.y) { }
+ wxPoint(const wxRealPoint& pt) : x(int(pt.x)), y(int(pt.y)) { }
// no copy ctor or assignment operator - the defaults are ok
// no copy ctor or assignment operator - the defaults are ok