X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f3a65071987ac699afa1cf7edf909f5770244dba..4dba84be231243149a45a286a651d02be8487423:/docs/latex/wx/list.tex diff --git a/docs/latex/wx/list.tex b/docs/latex/wx/list.tex index 6e53b0e541..5fb29e84c1 100644 --- a/docs/latex/wx/list.tex +++ b/docs/latex/wx/list.tex @@ -72,27 +72,25 @@ future versions completely. \helpref{wxObject}{wxobject} -{\bf WARNING: } the rest of documentation may be out-of-date. - \wxheading{Example} It is very common to iterate on a list as follows: \begin{verbatim} ... - wxPoint *point1 = new wxPoint(100, 100); - wxPoint *point2 = new wxPoint(200, 200); + wxWindow *win1 = new wxWindow(...); + wxWindow *win2 = new wxWindow(...); wxList SomeList; - SomeList.Append(point1); - SomeList.Append(point2); + SomeList.Append(win1); + SomeList.Append(win2); ... wxNode *node = SomeList.GetFirst(); while (node) { - wxPoint *point = (wxPoint *)node->Data(); + wxWindow *win = (wxWindow *)node->Data(); ... node = node->Next(); } @@ -110,7 +108,7 @@ with \begin{verbatim} ... - delete point; + delete win; delete node; node = SomeList.GetFirst(); ...