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.html6
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-&gt;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>()-&gt;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-&gt;source() == this &amp;&amp; event-&gt;action() == TQDropEvent::Move ) {