]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/arrstr.h
added a test to check if wxHtmlWindow::SelectionToText() inserts \n characters correctly
[wxWidgets.git] / interface / wx / arrstr.h
index 34652fe1448082316bacb58c84108dd88bf343d7..02a26db5439dd8ad678830153cb258490a21dbfd 100644 (file)
@@ -15,7 +15,6 @@
 
 /**
     @class wxArrayString
-    @wxheader{arrstr.h}
 
     wxArrayString is an efficient container for storing wxString objects.
 
@@ -97,13 +96,10 @@ public:
     size_t Add(const wxString& str, size_t copies = 1);
 
     /**
-        Preallocates enough memory to store @a nCount items. This function may be
-        used to improve array class performance before adding a known number of items
-        consecutively.
+        Preallocates enough memory to store @a nCount items.
 
-        @todo FIX THIS LINK
-
-        @see @ref wxArray::memorymanagement "Dynamic array memory management"
+        This function may be used to improve array class performance before
+        adding a known number of items consecutively.
     */
     void Alloc(size_t nCount);
 
@@ -187,13 +183,10 @@ public:
     void RemoveAt(size_t nIndex, size_t count = 1);
 
     /**
-        Releases the extra memory allocated by the array. This function is useful to
-        minimize the array memory consumption.
-
-        @todo FIX THIS LINK
+        Releases the extra memory allocated by the array.
+        This function is useful to minimize the array memory consumption.
 
-        @see Alloc(), @ref wxArray::memorymanagement "Dynamic array memory
-        management"
+        @see Alloc()
     */
     void Shrink();
 
@@ -263,7 +256,6 @@ public:
 
 /**
     @class wxSortedArrayString
-    @wxheader{arrstr.h}
 
     wxSortedArrayString is an efficient container for storing wxString objects
     which always keeps the string in alphabetical order.