summaryrefslogtreecommitdiffstats
path: root/doc/html/tqvaluestack.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqvaluestack.html')
-rw-r--r--doc/html/tqvaluestack.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/tqvaluestack.html b/doc/html/tqvaluestack.html
index 114dcc59f..86ed01bb8 100644
--- a/doc/html/tqvaluestack.html
+++ b/doc/html/tqvaluestack.html
@@ -59,7 +59,7 @@ The TQValueStack class is a value-based template class that provides a stack.
values that all have the class X. TQValueStack is part of the <a href="ntqtl.html">TQt Template Library</a>.
<p> Note that TQValueStack does not store pointers to the members of
the stack; it holds a copy of every member. That is why these
-kinds of classes are called "value based"; <a href="ntqptrstack.html">TQPtrStack</a>, <a href="ntqptrlist.html">TQPtrList</a>,
+kinds of classes are called "value based"; <a href="tqptrstack.html">TQPtrStack</a>, <a href="tqptrlist.html">TQPtrList</a>,
<a href="ntqdict.html">TQDict</a>, etc., are "pointer based".
<p> A stack is a last in, first out (LIFO) structure. Items are added
to the top of the stack with <a href="#push">push</a>() and retrieved from the top
@@ -81,7 +81,7 @@ without removing it.
</pre>
<p> TQValueStack is a specialized <a href="tqvaluelist.html">TQValueList</a> provided for convenience.
-All of TQValueList's functionality also applies to <a href="ntqptrstack.html">TQPtrStack</a>, for
+All of TQValueList's functionality also applies to <a href="tqptrstack.html">TQPtrStack</a>, for
example the facility to iterate over all elements using
TQValueStack<T>::Iterator. See <a href="tqvaluelistiterator.html">TQValueListIterator</a> for further
details.