X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e54c96f187f46c06bd36be8cd52b35c19884aa2b..42013f4c2866589e8a0ce6eba992f6745aebb857:/interface/list.h diff --git a/interface/list.h b/interface/list.h index 6988f7feb8..55416b4528 100644 --- a/interface/list.h +++ b/interface/list.h @@ -7,7 +7,6 @@ ///////////////////////////////////////////////////////////////////////////// /** - @class wxListT @wxheader{list.h} The wxListT class provides linked list functionality. It has been rewritten @@ -141,12 +140,12 @@ public: wxListT::compatibility_iterator Item(size_t index) const; /** - @b NB: This function is deprecated, use wxList::Find instead. + @note This function is deprecated, use wxList::Find instead. */ wxListT::compatibility_iterator Member(T* object) const; /** - @b NB: This function is deprecated, use @ref wxList::itemfunc Item instead. + @note This function is deprecated, use @ref wxList::itemfunc Item instead. Returns the @e nth node in the list, indexing from zero (@NULL if the list is empty or the nth node could not be found). @@ -154,7 +153,7 @@ public: wxListT::compatibility_iterator Nth(int n) const; /** - @b NB: This function is deprecated, use wxList::GetCount instead. + @note This function is deprecated, use wxList::GetCount instead. Returns the number of elements in the list. */ int Number() const; @@ -319,7 +318,7 @@ public: compatibility only and usage of this class is strongly deprecated. In the documentation below, the type @c T should be thought of as a - "template'' parameter: this is the type of data stored in the linked list or, + "template" parameter: this is the type of data stored in the linked list or, in other words, the first argument of WX_DECLARE_LIST macro. Also, wxNode is written as wxNodeT even though it isn't really a template class -- but it helps to think of it as if it were.