From: Vadim Zeitlin Date: Wed, 25 Oct 2006 00:59:07 +0000 (+0000) Subject: use WX_DEFINE_ARRAY_INT for an array of ints (bug 1536482) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5dafb071ba85e7329aa4a0ac176f3ec8e13e55dc use WX_DEFINE_ARRAY_INT for an array of ints (bug 1536482) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42382 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/latex/wx/array.tex b/docs/latex/wx/array.tex index c6c89a519a..e4415b39c6 100644 --- a/docs/latex/wx/array.tex +++ b/docs/latex/wx/array.tex @@ -128,8 +128,8 @@ Things are much simpler for wxArray and wxSortedArray however: it is enough just to write \begin{verbatim} -WX_DEFINE_ARRAY(int, ArrayOfDirectories); -WX_DEFINE_SORTED_ARRAY(int, ArrayOfFiles); +WX_DEFINE_ARRAY_INT(int, ArrayOfInts); +WX_DEFINE_SORTED_ARRAY_INT(int, ArrayOfSortedInts); \end{verbatim} i.e. there is only one {\tt DEFINE} macro and no need for separate