summaryrefslogtreecommitdiffstats
path: root/doc/html/tqvaluestack.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-06-06 12:20:38 +0900
committerMichele Calgaro <[email protected]>2024-06-06 12:20:38 +0900
commit0881ed5059c46ce73e8241e6260b82b92f6d0e55 (patch)
tree6d1d4883cc07ad22b11017d0714d4c26e1ce1b94 /doc/html/tqvaluestack.html
parent1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (diff)
downloadtqt3-0881ed5059c46ce73e8241e6260b82b92f6d0e55.tar.gz
tqt3-0881ed5059c46ce73e8241e6260b82b92f6d0e55.zip
Rename ptr nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
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.