summaryrefslogtreecommitdiffstats
path: root/doc/html/shclass.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/shclass.html')
-rw-r--r--doc/html/shclass.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/shclass.html b/doc/html/shclass.html
index bf8d201b4..c56be2406 100644
--- a/doc/html/shclass.html
+++ b/doc/html/shclass.html
@@ -128,7 +128,7 @@ TQByteArray know.
<p> An implicitly shared class has total control of its internal data. In
any member functions that modify its data, it automatically detaches
before modifying the data.
-<p> The <a href="ntqpen.html">TQPen</a> class, which uses implicit sharing, detaches from the shared
+<p> The <a href="tqpen.html">TQPen</a> class, which uses implicit sharing, detaches from the shared
data in all member functions that change the internal data.
<p> Code fragment:
<pre>
@@ -162,7 +162,7 @@ become unacceptably slow.
explicitly shared:
<p> <ul>
<li> <a href="tqbitarray.html">TQBitArray</a>
-<li> <a href="ntqpointarray.html">TQPointArray</a>
+<li> <a href="tqpointarray.html">TQPointArray</a>
<li> <a href="tqbytearray.html">TQByteArray</a>
<li> Any other instantiation of <a href="tqmemarray.html">TQMemArray&lt;type&gt;</a>
</ul>
@@ -183,11 +183,11 @@ copy().
<li> <a href="tqfontmetrics.html">TQFontMetrics</a>
<li> <a href="tqiconset.html">TQIconSet</a>
<li> <a href="tqmap.html">TQMap</a>
-<li> <a href="ntqpalette.html">TQPalette</a>
-<li> <a href="ntqpen.html">TQPen</a>
-<li> <a href="ntqpicture.html">TQPicture</a>
-<li> <a href="ntqpixmap.html">TQPixmap</a>
-<li> <a href="ntqregion.html">TQRegion</a>
+<li> <a href="tqpalette.html">TQPalette</a>
+<li> <a href="tqpen.html">TQPen</a>
+<li> <a href="tqpicture.html">TQPicture</a>
+<li> <a href="tqpixmap.html">TQPixmap</a>
+<li> <a href="tqregion.html">TQRegion</a>
<li> <a href="tqregexp.html">TQRegExp</a>
<li> <a href="tqstring.html">TQString</a>
<li> <a href="tqstringlist.html">TQStringList</a>
@@ -203,8 +203,8 @@ reason, you can pass instances of these classes as arguments to
functions by value without concern for the copying overhead.
<p> Example:
<pre>
- <a href="ntqpixmap.html">TQPixmap</a> p1, p2;
- p1.<a href="ntqpixmap.html#load">load</a>( "image.bmp" );
+ <a href="tqpixmap.html">TQPixmap</a> p1, p2;
+ p1.<a href="tqpixmap.html#load">load</a>( "image.bmp" );
p2 = p1; // p1 and p2 share data
<a href="tqpainter.html">TQPainter</a> paint;
paint.<a href="tqpainter.html#begin">begin</a>( &amp;p2 ); // cuts p2 loose from p1