summaryrefslogtreecommitdiffstats
path: root/doc/html/tqpaintdevice.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqpaintdevice.html')
-rw-r--r--doc/html/tqpaintdevice.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tqpaintdevice.html b/doc/html/tqpaintdevice.html
index 142ada23..97eb412f 100644
--- a/doc/html/tqpaintdevice.html
+++ b/doc/html/tqpaintdevice.html
@@ -155,7 +155,7 @@ graphics (external paint devices, for example, <a href="tqpicture.html">TQPictur
Returns the window system handle of the paint device, for
low-level access. Using this function is not portable.
<p> The HANDLE type varies with platform; see <a href="tqpaintdevice-h.html">tqpaintdevice.h</a> and
-<a href="qwindowdefs-h.html">ntqwindowdefs.h</a> for details.
+<a href="tqwindowdefs-h.html">tqwindowdefs.h</a> for details.
<p> <p>See also <a href="#x11Display">x11Display</a>().
<h3 class=fn>bool <a name="isExtDev"></a>TQPaintDevice::isExtDev () const
@@ -421,16 +421,16 @@ portable.
only). Using this function is not portable.
<hr><h2>Related Functions</h2>
-<h3 class=fn>void <a name="bitBlt"></a>bitBlt ( <a href="tqpaintdevice.html">TQPaintDevice</a>&nbsp;*&nbsp;dst, int&nbsp;dx, int&nbsp;dy, const&nbsp;<a href="tqpaintdevice.html">TQPaintDevice</a>&nbsp;*&nbsp;src, int&nbsp;sx, int&nbsp;sy, int&nbsp;sw, int&nbsp;sh, <a href="ntqt.html#RasterOp-enum">TQt::RasterOp</a>&nbsp;rop, bool&nbsp;ignoreMask )
+<h3 class=fn>void <a name="bitBlt"></a>bitBlt ( <a href="tqpaintdevice.html">TQPaintDevice</a>&nbsp;*&nbsp;dst, int&nbsp;dx, int&nbsp;dy, const&nbsp;<a href="tqpaintdevice.html">TQPaintDevice</a>&nbsp;*&nbsp;src, int&nbsp;sx, int&nbsp;sy, int&nbsp;sw, int&nbsp;sh, <a href="tqt.html#RasterOp-enum">TQt::RasterOp</a>&nbsp;rop, bool&nbsp;ignoreMask )
</h3>
<p> Copies a block of pixels from <em>src</em> to <em>dst</em>, perhaps merging
-each pixel according to the <a href="ntqt.html#RasterOp-enum">raster operation</a>
+each pixel according to the <a href="tqt.html#RasterOp-enum">raster operation</a>
<em>rop</em>. <em>sx</em>, <em>sy</em>
is the top-left pixel in <em>src</em> (0, 0) by default, <em>dx</em>, <em>dy</em> is
the top-left position in <em>dst</em> and <em>sw</em>, <em>sh</em> is the size of
the copied block (all of <em>src</em> by default).
-<p> The most common values for <em>rop</em> are CopyROP and XorROP; the <a href="ntqt.html#RasterOp-enum">TQt::RasterOp</a> documentation defines all the possible values.
+<p> The most common values for <em>rop</em> are CopyROP and XorROP; the <a href="tqt.html#RasterOp-enum">TQt::RasterOp</a> documentation defines all the possible values.
<p> If <em>ignoreMask</em> is FALSE (the default) and <em>src</em> is a
masked <a href="tqpixmap.html">TQPixmap</a>, the entire blit is masked by <em>src</em>->mask().
<p> If <em>src</em>, <em>dst</em>, <em>sw</em> or <em>sh</em> is 0, <a href="#bitBlt">bitBlt</a>() does nothing. If