summaryrefslogtreecommitdiffstats
path: root/doc/html/tqptrlist.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqptrlist.html')
-rw-r--r--doc/html/tqptrlist.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/tqptrlist.html b/doc/html/tqptrlist.html
index 15b7913c..d733c9e8 100644
--- a/doc/html/tqptrlist.html
+++ b/doc/html/tqptrlist.html
@@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="tqptrlist-h.html">tqptrlist.h</a>&gt;</tt>
<p>Inherits <a href="tqptrcollection.html">TQPtrCollection</a>.
-<p>Inherited by <a href="tqobjectlist.html">TQObjectList</a> and <a href="ntqstrlist.html">TQStrList</a>.
+<p>Inherited by <a href="tqobjectlist.html">TQObjectList</a> and <a href="tqstrlist.html">TQStrList</a>.
<p><a href="tqptrlist-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
@@ -125,19 +125,19 @@ Example:
{
public:
Employee() : sn( 0 ) { }
- Employee( const <a href="ntqstring.html">TQString</a>&amp; forename, const <a href="ntqstring.html">TQString</a>&amp; surname, int salary )
+ Employee( const <a href="tqstring.html">TQString</a>&amp; forename, const <a href="tqstring.html">TQString</a>&amp; surname, int salary )
: fn( forename ), sn( surname ), sal( salary )
{ }
void setSalary( int salary ) { sal = salary; }
- <a href="ntqstring.html">TQString</a> forename() const { return fn; }
- <a href="ntqstring.html">TQString</a> surname() const { return sn; }
+ <a href="tqstring.html">TQString</a> forename() const { return fn; }
+ <a href="tqstring.html">TQString</a> surname() const { return sn; }
int salary() const { return sal; }
private:
- <a href="ntqstring.html">TQString</a> fn;
- <a href="ntqstring.html">TQString</a> sn;
+ <a href="tqstring.html">TQString</a> fn;
+ <a href="tqstring.html">TQString</a> sn;
int sal;
};
@@ -202,9 +202,9 @@ also holds pointers to the next and previous list items. The
functions <a href="#currentNode">currentNode</a>(), <a href="#removeNode">removeNode</a>(), and <a href="#takeNode">takeNode</a>() operate
directly on the TQLNode, but they should be used with care. The
data component of the node is available through TQLNode::getData().
-<p> The <a href="ntqstrlist.html">TQStrList</a> class defined in <a href="qstrlist-h.html">ntqstrlist.h</a> is a list of <tt>char*</tt>.
+<p> The <a href="tqstrlist.html">TQStrList</a> class defined in <a href="tqstrlist-h.html">tqstrlist.h</a> is a list of <tt>char*</tt>.
It reimplements <a href="tqptrcollection.html#newItem">newItem</a>(), <a href="tqptrcollection.html#deleteItem">deleteItem</a>() and <a href="#compareItems">compareItems</a>(). (But
-see <a href="ntqstringlist.html">TQStringList</a> for a list of Unicode TQStrings.)
+see <a href="tqstringlist.html">TQStringList</a> for a list of Unicode TQStrings.)
<p> <p>See also <a href="tqptrlistiterator.html">TQPtrListIterator</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>.
<hr><h2>Member Function Documentation</h2>