corrected sizer code example which wrongly used wxBORDER

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47897 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-08-06 00:58:30 +00:00
parent 19cf1ef3a7
commit 58611b5a50

View File

@@ -561,7 +561,7 @@ allows you to specify all parameters using the named methods instead. For
example, instead of
\begin{verbatim}
sizer->Add(ctrl, 0, wxEXPAND | wxBORDER, 10);
sizer->Add(ctrl, 0, wxEXPAND | wxALL, 10);
\end{verbatim}
you can now write