name wxStaticBoxSizer; some other minor wording clarifications

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60245 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2009-04-19 19:46:36 +00:00
parent ea0022d356
commit f3289ffb1f
2 changed files with 22 additions and 15 deletions

View File

@@ -1636,11 +1636,12 @@ public:
/**
@class wxStaticBoxSizer
wxStaticBoxSizer is a sizer derived from wxBoxSizer but adds a static
box around the sizer.
This static box may be either created independently or the sizer may create
it itself as a convenience. In any case, the sizer owns the wxStaticBox control
and will delete it, if it is deleted.
wxStaticBoxSizer is a sizer derived from wxBoxSizer but adds a static box around
the sizer.
The static box may be either created independently or the sizer may create it
itself as a convenience. In any case, the sizer owns the wxStaticBox control
and will delete it in the wxStaticBoxSizer destructor.
@library{wxcore}
@category{winlayout}
@@ -1653,8 +1654,11 @@ public:
/**
This constructor uses an already existing static box.
It takes the associated static box and the orientation @a orient, which
can be either @c wxVERTICAL or @c wxHORIZONTAL as parameters.
@param box
The static box to associate with the sizer (which will take its
ownership).
@param orient
Can be either @c wxVERTICAL or @c wxHORIZONTAL.
*/
wxStaticBoxSizer(wxStaticBox* box, int orient);