]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/list.h
first revision (contains wxHelpEvent and wxNavigationKeyEvent modifications which...
[wxWidgets.git] / interface / list.h
index 6988f7feb82b3dd43fc8376fe2358ec87b6a664d..55416b4528e6d8d051eaa49e0401d534a176cd7d 100644 (file)
@@ -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.