X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a660d684eda27638bca0384b2058911a31c8e845..240889a18cb17f20884c6ce36e52a6dcf589bb08:/docs/latex/wx/statbox.tex

diff --git a/docs/latex/wx/statbox.tex b/docs/latex/wx/statbox.tex
index a0698b0f33..a3ce189d80 100644
--- a/docs/latex/wx/statbox.tex
+++ b/docs/latex/wx/statbox.tex
@@ -3,6 +3,11 @@
 A static box is a rectangle drawn around other panel items to denote
 a logical grouping of items.
 
+Please note that a static box should {\bf not} be used as the parent for the
+controls it contains, instead they should be siblings of each other. Although
+using a static box as a parent might work in some versions of wxWindows, it
+results in a crash under, for example, wxGTK.
+
 \wxheading{Derived from}
 
 \helpref{wxControl}{wxcontrol}\\
@@ -10,6 +15,10 @@ a logical grouping of items.
 \helpref{wxEvtHandler}{wxevthandler}\\
 \helpref{wxObject}{wxobject}
 
+\wxheading{Include files}
+
+<wx/statbox.h>
+
 \wxheading{Window styles}
 
 There are no special styles for this control.
@@ -28,9 +37,9 @@ See also \helpref{window styles overview}{windowstyles}.
 
 Default constructor.
 
-\func{}{wxStaticBox}{\param{wxWindow* }{parent}, \param{const wxWindowID }{id}, \param{const wxString\& }{label},\rtfsp
+\func{}{wxStaticBox}{\param{wxWindow* }{parent}, \param{wxWindowID }{id}, \param{const wxString\& }{label},\rtfsp
 \param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize},\rtfsp
-\param{const long}{ style = 0}, \param{const wxString\& }{name = ``staticBox"}}
+\param{long}{ style = 0}, \param{const wxString\& }{name = ``staticBox"}}
 
 Constructor, creating and showing a static box.
 
@@ -62,9 +71,9 @@ Destructor, destroying the group box.
 
 \membersection{wxStaticBox::Create}\label{wxstaticboxcreate}
 
-\func{bool}{Create}{\param{wxWindow* }{parent}, \param{const wxWindowID }{id}, \param{const wxString\& }{label},\rtfsp
+\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID }{id}, \param{const wxString\& }{label},\rtfsp
 \param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize},\rtfsp
-\param{const long}{ style = 0}, \param{const wxString\& }{name = ``staticBox"}}
+\param{long}{ style = 0}, \param{const wxString\& }{name = ``staticBox"}}
 
 Creates the static box for two-step construction. See \helpref{wxStaticBox::wxStaticBox}{wxstaticboxconstr}\rtfsp
 for further details.