X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fe604ccddcf5696a751892ad70dbc822be239c95..74c481d11721fb42343c6b79996478a2ebacde3a:/docs/latex/wx/tsplittr.tex diff --git a/docs/latex/wx/tsplittr.tex b/docs/latex/wx/tsplittr.tex index 2be27dee73..5e7a363960 100644 --- a/docs/latex/wx/tsplittr.tex +++ b/docs/latex/wx/tsplittr.tex @@ -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 ); }