]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/strlist.tex
mention Watcom makefile for wxBase
[wxWidgets.git] / docs / latex / wx / strlist.tex
index 0c45fe457e0eff152f24a90883d64aab71ad1963..8956e27041a913332850a83fc13d3f58671bf63c 100644 (file)
@@ -1,7 +1,11 @@
 \section{\class{wxStringList}}\label{wxstringlist}
 
-A string list is a list which is assumed to contain strings, with a
-specific member functions. Memory is allocated when strings are added to
+{\bf NB:} This class is obsolete, please don't use it any longer. You can use
+either \helpref{wxArrayString}{wxarraystring} or a \helpref{type safe}{wxlist} 
+list class instead.
+
+A string list is a list which is assumed to contain strings.
+Memory is allocated when strings are added to
 the list, and deallocated by the destructor or by the {\bf Delete}\rtfsp
 member.
 
@@ -10,6 +14,10 @@ member.
 \helpref{wxList}{wxlist}\\
 \helpref{wxObject}{wxobject}
 
+\wxheading{Include files}
+
+<wx/list.h>
+
 \wxheading{See also}
 
 \helpref{wxString}{wxstring}, \helpref{wxList}{wxlist}
@@ -39,6 +47,12 @@ Deletes string list, deallocating strings.
 
 Adds string to list, allocating memory.
 
+\membersection{wxStringList::Clear}
+
+\func{void}{Clear}{\void}
+
+Clears all strings from the list.
+
 \membersection{wxStringList::Delete}
 
 \func{void}{Delete}{\param{const wxString\& }{s}}
@@ -47,16 +61,16 @@ Searches for string and deletes from list, deallocating memory.
 
 \membersection{wxStringList::ListToArray}
 
-\func{char*}{ListToArray}{\param{bool}{ new\_copies = FALSE}}
+\func{char*}{ListToArray}{\param{bool}{ new\_copies = false}}
 
 Converts the list to an array of strings, only allocating new memory if
-\rtfsp{\bf new\_copies} is TRUE.
+\rtfsp{\bf new\_copies} is true.
 
 \membersection{wxStringList::Member}
 
 \func{bool}{Member}{\param{const wxString\& }{s}}
 
-Returns TRUE if {\bf s} is a member of the list (tested using {\bf strcmp}).
+Returns true if {\bf s} is a member of the list (tested using {\bf strcmp}).
 
 \membersection{wxStringList::Sort}