]> git.saurik.com Git - wxWidgets.git/commitdiff
corrected sizer code example which wrongly used wxBORDER
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 6 Aug 2007 00:58:30 +0000 (00:58 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 6 Aug 2007 00:58:30 +0000 (00:58 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47897 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/sizer.tex

index 5d2816d0307fa76d55e30aeca40c1df287c64258..4e13811aeb85fd10b76ba056383a23d84ad28c3e 100644 (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