Fix return types on wxRect::Inflate and Deflate
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65986 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -266,10 +266,10 @@ public:
|
|||||||
This method is the opposite from Inflate(): Deflate(a, b) is equivalent
|
This method is the opposite from Inflate(): Deflate(a, b) is equivalent
|
||||||
to Inflate(-a, -b). Please refer to Inflate() for full description.
|
to Inflate(-a, -b). Please refer to Inflate() for full description.
|
||||||
*/
|
*/
|
||||||
void Deflate(wxCoord dx, wxCoord dy);
|
wxRect& Deflate(wxCoord dx, wxCoord dy);
|
||||||
void Deflate(const wxSize& diff);
|
wxRect& Deflate(const wxSize& diff);
|
||||||
void Deflate(wxCoord diff);
|
wxRect& Deflate(wxCoord diff);
|
||||||
wxRect Deflate(wxCoord dx, wxCoord dy) const;
|
wxRect Deflate(wxCoord dx, wxCoord dy) const;
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -374,9 +374,9 @@ public:
|
|||||||
|
|
||||||
@see Deflate()
|
@see Deflate()
|
||||||
*/
|
*/
|
||||||
void Inflate(wxCoord dx, wxCoord dy);
|
wxRect& Inflate(wxCoord dx, wxCoord dy);
|
||||||
void Inflate(const wxSize& diff);
|
wxRect& Inflate(const wxSize& diff);
|
||||||
void Inflate(wxCoord diff);
|
wxRect& Inflate(wxCoord diff);
|
||||||
wxRect Inflate(wxCoord dx, wxCoord dy) const;
|
wxRect Inflate(wxCoord dx, wxCoord dy) const;
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user