summaryrefslogtreecommitdiffstats
path: root/doc/html/cursor-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-25 15:36:25 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-29 22:23:36 +0900
commit0917fbb5387978eb7b2e2fd68bcb6beaa8c46505 (patch)
tree0ef68a6a92087957855c7607ac176821d10d049d /doc/html/cursor-example.html
parent7b1d2ad2df8cd011b487c43336aa67639fa359c9 (diff)
downloadtqt-0917fbb5387978eb7b2e2fd68bcb6beaa8c46505.tar.gz
tqt-0917fbb5387978eb7b2e2fd68bcb6beaa8c46505.zip
Rename remaining ntq[a-c]* related files to equivalent tq* (except ntqapplication.h and ntqconfig.h)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/cursor-example.html')
-rw-r--r--doc/html/cursor-example.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/cursor-example.html b/doc/html/cursor-example.html
index c218bc6cd..b17ea2cc9 100644
--- a/doc/html/cursor-example.html
+++ b/doc/html/cursor-example.html
@@ -50,7 +50,7 @@ This example shows how to set a mouse cursor for a widget.
#include &lt;<a href="tqbitmap-h.html">tqbitmap.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;<a href="tqlayout-h.html">tqlayout.h</a>&gt;
-#include &lt;<a href="qcursor-h.html">ntqcursor.h</a>&gt;
+#include &lt;<a href="tqcursor-h.html">tqcursor.h</a>&gt;
// cb_bits and cm_bits were generated by X bitmap program.
@@ -159,7 +159,7 @@ CursorView::CursorView() // construct view
<a href="tqbitmap.html">TQBitmap</a> cb( cb_width, cb_height, cb_bits, TRUE );
<a href="tqbitmap.html">TQBitmap</a> cm( cm_width, cm_height, cm_bits, TRUE );
- <a href="ntqcursor.html">TQCursor</a> custom( cb, cm ); // create bitmap cursor
+ <a href="tqcursor.html">TQCursor</a> custom( cb, cm ); // create bitmap cursor
label = new <a href="tqlabel.html">TQLabel</a>( this ); // create the big label
label-&gt;<a href="tqwidget.html#setCursor">setCursor</a>( custom );