From bb250157d95834afa04fa7fc188833248450d65c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 5 Nov 2000 14:04:04 +0000 Subject: [PATCH] typos fix from the main branch git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8692 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/list.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/latex/wx/list.tex b/docs/latex/wx/list.tex index 663ac42594..83c051a0d0 100644 --- a/docs/latex/wx/list.tex +++ b/docs/latex/wx/list.tex @@ -19,7 +19,7 @@ data but make all of its dangerous (because untyped) functions protected, so that they can only be used from derived classes which, in turn, expose a type safe interface. With this approach a new wxList-like class must be defined for each list type (i.e. list of ints, of wxStrings or of MyObjects). This is done -with {\it WX\_DECLARE\_LIST} and {\it WX\_IMPLEMENT\_LIST} macros like this +with {\it WX\_DECLARE\_LIST} and {\it WX\_DEFINE\_LIST} macros like this (notice the similarity with WX\_DECLARE\_OBJARRAY and WX\_IMPLEMENT\_OBJARRAY macros): @@ -51,8 +51,8 @@ macros): // also have MyList::Node type which is the type-safe version of wxNode. MyList list; MyListElement element; - list.Add(element); // ok - list.Add(17); // error: incorrect type + list.Append(element); // ok + list.Append(17); // error: incorrect type // let's iterate over the list for ( MyList::Node *node = list.GetFirst(); node; node = node->GetNext() ) -- 2.45.2