X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fe604ccddcf5696a751892ad70dbc822be239c95..8a077f2872e0082e27580e0a653ba92409792cf1:/docs/latex/wx/tsplittr.tex diff --git a/docs/latex/wx/tsplittr.tex b/docs/latex/wx/tsplittr.tex index 2be27dee73..c9d3c4b7bf 100644 --- a/docs/latex/wx/tsplittr.tex +++ b/docs/latex/wx/tsplittr.tex @@ -8,7 +8,7 @@ $$\image{8cm;0cm}{splitter.eps}$$ The style wxSP\_3D has been used to show a 3D border and 3D sash. -\subsection{Example} +\subsection{Example}\label{wxsplitterwindowexample} The following fragment shows how to create a splitter window, creating two subwindows and hiding one of them. @@ -22,7 +22,7 @@ subwindows and hiding one of them. rightWindow = new MyWindow(splitter); rightWindow->SetScrollbars(20, 20, 50, 50); - rightWindow->Show(FALSE); + rightWindow->Show(false); splitter->Initialize(leftWindow); @@ -39,8 +39,8 @@ The next fragment shows how the splitter window can be manipulated after creatio { if ( splitter->IsSplit() ) splitter->Unsplit(); - leftWindow->Show(TRUE); - rightWindow->Show(TRUE); + leftWindow->Show(true); + rightWindow->Show(true); splitter->SplitVertically( leftWindow, rightWindow ); } @@ -48,8 +48,8 @@ The next fragment shows how the splitter window can be manipulated after creatio { if ( splitter->IsSplit() ) splitter->Unsplit(); - leftWindow->Show(TRUE); - rightWindow->Show(TRUE); + leftWindow->Show(true); + rightWindow->Show(true); splitter->SplitHorizontally( leftWindow, rightWindow ); }