summaryrefslogtreecommitdiffstats
path: root/doc/html/dnd.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-20 20:15:52 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-21 23:04:19 +0900
commit1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch)
tree5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/html/dnd.html
parent14c414378d96f7463b989384f4a0e5dd76632b6d (diff)
downloadtqt-1e9fa8e0.tar.gz
tqt-1e9fa8e0.zip
Rename graphics class nt* related files to equivalent tq* (part 2)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/dnd.html')
-rw-r--r--doc/html/dnd.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/dnd.html b/doc/html/dnd.html
index bdd86f4c0..cb91d5acf 100644
--- a/doc/html/dnd.html
+++ b/doc/html/dnd.html
@@ -184,7 +184,7 @@ void MyWidget::load()
Note how the <a href="tqdragobject.html">TQDragObject</a> subclass is called "MyCadDrag", not
"MyDxfDrag": because in the future you might extend it to provide
-DXF, DWG, SVF, WMF, or even <a href="ntqpicture.html">TQPicture</a> data to other applications.
+DXF, DWG, SVF, WMF, or even <a href="tqpicture.html">TQPicture</a> data to other applications.
<p> <h2> Drag and Drop Actions
</h2>
<a name="4"></a><p> In the simpler cases, the target of a drag-and-drop receives a copy of
@@ -305,7 +305,7 @@ void MyWidget::dragMoveEvent(TQDragMoveEvent* event)
if ( TQTextDrag::<a href="tqtextdrag.html#canDecode">canDecode</a>(event) ) {
MyCadItem* item = findMyItemAt(event-&gt;pos());
if ( item ) {
- <a href="ntqrect.html">TQRect</a> r = item-&gt;areaRelativeToMeClippedByAnythingInTheWay();
+ <a href="tqrect.html">TQRect</a> r = item-&gt;areaRelativeToMeClippedByAnythingInTheWay();
if ( item-&gt;type() == MyTextType )
event-&gt;accept( r );
else