From: Vadim Zeitlin Date: Mon, 6 Aug 2007 00:58:30 +0000 (+0000) Subject: corrected sizer code example which wrongly used wxBORDER X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/58611b5a50d2ace1feb5efc081ee7cfd32337542 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 --- diff --git a/docs/latex/wx/sizer.tex b/docs/latex/wx/sizer.tex index 5d2816d030..4e13811aeb 100644 --- a/docs/latex/wx/sizer.tex +++ b/docs/latex/wx/sizer.tex @@ -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