Add 3 missing declarations for wxPoint2DInt non-member operator functions.
Three duplicate declarations were removed in r70493 instead of replacing them with the missing declarations. Closes #10946. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76568 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
7f26fff6b4
commit
0141cbe551
@ -87,9 +87,12 @@ inline wxPoint2DInt operator+(const wxPoint2DInt& pt1 , const wxPoint2DInt& pt2)
|
||||
inline wxPoint2DInt operator-(const wxPoint2DInt& pt1 , const wxPoint2DInt& pt2);
|
||||
inline wxPoint2DInt operator*(const wxPoint2DInt& pt1 , const wxPoint2DInt& pt2);
|
||||
inline wxPoint2DInt operator*(wxInt32 n , const wxPoint2DInt& pt);
|
||||
inline wxPoint2DInt operator*(wxDouble n , const wxPoint2DInt& pt);
|
||||
inline wxPoint2DInt operator*(const wxPoint2DInt& pt , wxInt32 n);
|
||||
inline wxPoint2DInt operator*(const wxPoint2DInt& pt , wxDouble n);
|
||||
inline wxPoint2DInt operator/(const wxPoint2DInt& pt1 , const wxPoint2DInt& pt2);
|
||||
inline wxPoint2DInt operator/(const wxPoint2DInt& pt , wxInt32 n);
|
||||
inline wxPoint2DInt operator/(const wxPoint2DInt& pt , wxDouble n);
|
||||
|
||||
inline wxPoint2DInt::wxPoint2DInt()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user