summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqstringlist.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/ntqstringlist.html')
-rw-r--r--doc/html/ntqstringlist.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/ntqstringlist.html b/doc/html/ntqstringlist.html
index f5f71456..1cd5e524 100644
--- a/doc/html/ntqstringlist.html
+++ b/doc/html/ntqstringlist.html
@@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
<a href="#details">More...</a>
<p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when TQt is built with thread support.</p>
<p><tt>#include &lt;<a href="qstringlist-h.html">ntqstringlist.h</a>&gt;</tt>
-<p>Inherits <a href="ntqvaluelist.html">TQValueList</a>&lt;TQString&gt;.
+<p>Inherits <a href="tqvaluelist.html">TQValueList</a>&lt;TQString&gt;.
<p><a href="qstringlist-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
@@ -68,18 +68,18 @@ The TQStringList class provides a list of strings.
<p> It is used to store and manipulate strings that logically belong
-together. Essentially TQStringList is a <a href="ntqvaluelist.html">TQValueList</a> of <a href="ntqstring.html">TQString</a>
+together. Essentially TQStringList is a <a href="tqvaluelist.html">TQValueList</a> of <a href="ntqstring.html">TQString</a>
objects. Unlike <a href="ntqstrlist.html">TQStrList</a>, which stores pointers to characters,
TQStringList holds real TQString objects. It is the class of choice
whenever you work with Unicode strings. TQStringList is part of the
<a href="ntqtl.html">TQt Template Library</a>.
<p> Like TQString itself, TQStringList objects are <a href="shclass.html#implicitly-shared">implicitly shared</a>, so
passing them around as value-parameters is both fast and safe.
-<p> Strings can be added to a list using <a href="ntqvaluelist.html#append">append</a>(), <a href="ntqvaluelist.html#operator+-eq">operator+=</a>() or
-<a href="ntqvaluelist.html#operator-lt-lt">operator&lt;&lt;</a>(), e.g.
+<p> Strings can be added to a list using <a href="tqvaluelist.html#append">append</a>(), <a href="tqvaluelist.html#operator+-eq">operator+=</a>() or
+<a href="tqvaluelist.html#operator-lt-lt">operator&lt;&lt;</a>(), e.g.
<pre>
TQStringList fonts;
- fonts.<a href="ntqvaluelist.html#append">append</a>( "Times" );
+ fonts.<a href="tqvaluelist.html#append">append</a>( "Times" );
fonts += "Courier";
fonts += "Courier New";
fonts &lt;&lt; "Helvetica [Cronyx]" &lt;&lt; "Helvetica [Adobe]";
@@ -87,7 +87,7 @@ passing them around as value-parameters is both fast and safe.
<p> String lists have an iterator, TQStringList::Iterator(), e.g.
<pre>
- for ( TQStringList::<a href="ntqvaluelist.html#Iterator">Iterator</a> it = fonts.begin(); it != fonts.end(); ++it ) {
+ for ( TQStringList::<a href="tqvaluelist.html#Iterator">Iterator</a> it = fonts.begin(); it != fonts.end(); ++it ) {
cout &lt;&lt; *it &lt;&lt; ":";
}
cout &lt;&lt; endl;
@@ -152,7 +152,7 @@ copy-on-write.
In a threaded environment you may require a real deep copy
.
-<h3 class=fn><a name="TQStringList-3"></a>TQStringList::TQStringList ( const&nbsp;<a href="ntqvaluelist.html">TQValueList</a>&lt;TQString&gt;&nbsp;&amp;&nbsp;l )
+<h3 class=fn><a name="TQStringList-3"></a>TQStringList::TQStringList ( const&nbsp;<a href="tqvaluelist.html">TQValueList</a>&lt;TQString&gt;&nbsp;&amp;&nbsp;l )
</h3>
<p> Constructs a new string list that is a copy of <em>l</em>.
@@ -254,7 +254,7 @@ Sorts the list of strings in ascending case-sensitive order.
Library's</a> efficient HeapSort implementation that has a
time complexity of O(n*log n).
<p> If you want to sort your strings in an arbitrary order consider
-using a <a href="ntqmap.html">TQMap</a>. For example you could use a TQMap&lt;TQString,TQString&gt;
+using a <a href="tqmap.html">TQMap</a>. For example you could use a TQMap&lt;TQString,TQString&gt;
to create a case-insensitive ordering (e.g. mapping the lowercase
text to the text), or a TQMap&lt;int,TQString&gt; to sort the strings by
some integer index, etc.