Fix documentation of wxGridBagSizer::Add() spacer overload.

Describe the width and height parameters.

See #14866.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73083 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-12-01 00:13:40 +00:00
parent c1bd5a6d3f
commit faadbe6f39

View File

@@ -93,12 +93,20 @@ public:
wxSizerItem* Add(wxSizer* sizer, const wxGBPosition& pos,
const wxGBSpan& span = wxDefaultSpan,
int flag = 0, int border = 0, wxObject* userData = NULL);
wxSizerItem* Add(wxGBSizerItem* item);
/**
Adds a spacer to the given position.
@a width and @a height specify the dimension of the spacer to be added.
@return A valid pointer if the spacer was successfully placed at the
given position, or @NULL if something was already there.
*/
wxSizerItem* Add(int width, int height, const wxGBPosition& pos,
const wxGBSpan& span = wxDefaultSpan,
int flag = 0, int border = 0, wxObject* userData = NULL);
wxSizerItem* Add(wxGBSizerItem* item);
//@}
//@}
/**
Called when the managed size of the sizer is needed or when layout
needs done.