summaryrefslogtreecommitdiffstats
path: root/doc/html/dnd.html
diff options
context:
space:
mode:
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 bdd86f4c..cb91d5ac 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