summaryrefslogtreecommitdiffstats
path: root/doc/dnd.doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/dnd.doc')
-rw-r--r--doc/dnd.doc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/dnd.doc b/doc/dnd.doc
index 63edc1c55..a7105e0f7 100644
--- a/doc/dnd.doc
+++ b/doc/dnd.doc
@@ -180,7 +180,7 @@ void MyWidget::load()
\endcode
Note how the TQDragObject subclass is called "MyCadDrag", not
"MyDxfDrag": because in the future you might extend it to provide
-DXF, DWG, SVF, WMF, or even QPicture data to other applications.
+DXF, DWG, SVF, WMF, or even TQPicture data to other applications.
\section1 Drag and Drop Actions
@@ -321,7 +321,7 @@ void MyWidget::dragMoveEvent(TQDragMoveEvent* event)
if ( TQTextDrag::canDecode(event) ) {
MyCadItem* item = findMyItemAt(event->pos());
if ( item ) {
- QRect r = item->areaRelativeToMeClippedByAnythingInTheWay();
+ TQRect r = item->areaRelativeToMeClippedByAnythingInTheWay();
if ( item->type() == MyTextType )
event->accept( r );
else