X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1ac74d83a39abb3697745e0d494f28f4d27f3efd..550d433e523dc462c62a2346c0fd713a1d5705e8:/docs/latex/wx/array.tex?ds=sidebyside diff --git a/docs/latex/wx/array.tex b/docs/latex/wx/array.tex index 5ed809ade2..c6c89a519a 100644 --- a/docs/latex/wx/array.tex +++ b/docs/latex/wx/array.tex @@ -288,10 +288,10 @@ needed for exporting an array from a user DLL. Example: \begin{verbatim} -WX_DEFINE_ARRAY_INT(int, wxArrayInt); +WX_DEFINE_ARRAY_INT(int, MyArrayInt); class MyClass; -WX_DEFINE_ARRAY(MyClass *, wxArrayOfMyClass); +WX_DEFINE_ARRAY(MyClass *, ArrayOfMyClass); \end{verbatim} Note that wxWidgets predefines the following standard array classes: wxArrayInt, @@ -313,10 +313,10 @@ needed for exporting an array from a user DLL. Example: \begin{verbatim} -WX_DEFINE_SORTED_ARRAY_INT(wxSortedArrayInt); +WX_DEFINE_SORTED_ARRAY_INT(int, MySortedArrayInt); class MyClass; -WX_DEFINE_SORTED_ARRAY(MyClass *, wxArrayOfMyClass); +WX_DEFINE_SORTED_ARRAY(MyClass *, ArrayOfMyClass); \end{verbatim} You will have to initialize the objects of this class by passing a comparison @@ -534,9 +534,9 @@ Return the number of items in the array. \membersection{wxArray::Index}\label{wxarrayindex} -\func{int}{Index}{\param{T\& }{item}, \param{bool }{searchFromEnd = false}} +\constfunc{int}{Index}{\param{T\& }{item}, \param{bool }{searchFromEnd = false}} -\func{int}{Index}{\param{T\& }{item}} +\constfunc{int}{Index}{\param{T\& }{item}} The first version of the function is for wxArray and wxObjArray, the second is for wxSortedArray only. @@ -679,3 +679,4 @@ return a negative, zero or positive value according to whether the first element passed to it is less than, equal to or greater than the second one. wxSortedArray doesn't have this function because it is always sorted. +