diff options
Diffstat (limited to 'doc/html/dnd.html')
-rw-r--r-- | doc/html/dnd.html | 4 |
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->pos()); if ( item ) { - <a href="ntqrect.html">TQRect</a> r = item->areaRelativeToMeClippedByAnythingInTheWay(); + <a href="tqrect.html">TQRect</a> r = item->areaRelativeToMeClippedByAnythingInTheWay(); if ( item->type() == MyTextType ) event->accept( r ); else |