Document wxGB{Position,Size}::operator!=(), remove operator!().
The latter doesn't exist (any more?), the former does. Closes #13975. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70589 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -48,9 +48,9 @@ public:
|
|||||||
void SetRow(int row);
|
void SetRow(int row);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Checks if the position is valid. An invalid position is (-1,-1).
|
Compare inequality of two wxGBPositions.
|
||||||
*/
|
*/
|
||||||
bool operator!(const wxGBPosition& p) const;
|
bool operator!=(const wxGBPosition& p) const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Compare equality of two wxGBPositions.
|
Compare equality of two wxGBPositions.
|
||||||
@@ -342,9 +342,9 @@ public:
|
|||||||
void SetRowspan(int rowspan);
|
void SetRowspan(int rowspan);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Checks if the span is valid. An invalid span is (-1,-1).
|
Compare inequality of two wxGBSpans.
|
||||||
*/
|
*/
|
||||||
bool operator!(const wxGBSpan& o) const;
|
bool operator!=(const wxGBSpan& o) const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Compare equality of two wxGBSpans.
|
Compare equality of two wxGBSpans.
|
||||||
|
Reference in New Issue
Block a user