diff options
Diffstat (limited to 'doc/html/dnd.html')
-rw-r--r-- | doc/html/dnd.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/dnd.html b/doc/html/dnd.html index 5614b21a2..0fb3d2950 100644 --- a/doc/html/dnd.html +++ b/doc/html/dnd.html @@ -115,7 +115,7 @@ void MyWidget::dragEnterEvent(TQDragEnterEvent* event) void MyWidget::dropEvent(TQDropEvent* event) { <a href="tqimage.html">TQImage</a> image; - <a href="ntqstring.html">TQString</a> text; + <a href="tqstring.html">TQString</a> text; if ( TQImageDrag::<a href="tqimagedrag.html#decode">decode</a>(event, image) ) { insertImageAt(image, event->pos()); @@ -148,7 +148,7 @@ void MyWidget::copy() void MyWidget::paste() { - <a href="ntqstring.html">TQString</a> text; + <a href="tqstring.html">TQString</a> text; if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>(TQApplication::<a href="ntqapplication.html#clipboard">clipboard</a>()->data(), text) ) insertText( text ); } @@ -266,7 +266,7 @@ void MyEditor::startDrag() void MyEditor::dropEvent(TQDropEvent* event) { - <a href="ntqstring.html">TQString</a> text; + <a href="tqstring.html">TQString</a> text; if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>(event, text) ) { if ( event->source() == this && event->action() == TQDropEvent::Move ) { |