diff options
Diffstat (limited to 'doc/html/iconview-simple_dd-main-cpp.html')
-rw-r--r-- | doc/html/iconview-simple_dd-main-cpp.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/iconview-simple_dd-main-cpp.html b/doc/html/iconview-simple_dd-main-cpp.html index 8a36a84b2..05393a55a 100644 --- a/doc/html/iconview-simple_dd-main-cpp.html +++ b/doc/html/iconview-simple_dd-main-cpp.html @@ -120,7 +120,7 @@ const char* green_icon[]={ <a name="x2829"></a>void DDListBox::<a href="tqwidget.html#dragEnterEvent">dragEnterEvent</a>( <a href="qdragenterevent.html">TQDragEnterEvent</a> *evt ) { -<a name="x2827"></a> if ( TQTextDrag::<a href="qtextdrag.html#canDecode">canDecode</a>( evt ) ) +<a name="x2827"></a> if ( TQTextDrag::<a href="tqtextdrag.html#canDecode">canDecode</a>( evt ) ) <a name="x2819"></a> evt-><a href="qdragmoveevent.html#accept">accept</a>(); } @@ -129,7 +129,7 @@ const char* green_icon[]={ { <a href="tqstring.html">TQString</a> text; -<a name="x2828"></a> if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>( evt, text ) ) +<a name="x2828"></a> if ( TQTextDrag::<a href="tqtextdrag.html#decode">decode</a>( evt, text ) ) <a href="ntqlistbox.html#insertItem">insertItem</a>( text ); } @@ -144,7 +144,7 @@ const char* green_icon[]={ <a name="x2831"></a>void DDListBox::<a href="tqwidget.html#mouseMoveEvent">mouseMoveEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> * ) { if ( dragging ) { - <a href="ntqdragobject.html">TQDragObject</a> *d = new <a href="qtextdrag.html">TQTextDrag</a>( currentText(), this ); + <a href="ntqdragobject.html">TQDragObject</a> *d = new <a href="tqtextdrag.html">TQTextDrag</a>( currentText(), this ); <a name="x2818"></a> d-><a href="ntqdragobject.html#dragCopy">dragCopy</a>(); // do NOT delete d. dragging = FALSE; } @@ -166,7 +166,7 @@ const char* green_icon[]={ { <a href="tqstring.html">TQString</a> label; - if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>( evt, label ) ) + if ( TQTextDrag::<a href="tqtextdrag.html#decode">decode</a>( evt, label ) ) setText( label ); } @@ -175,14 +175,14 @@ const char* green_icon[]={ <a name="x2820"></a>TQDragObject *DDIconView::<a href="ntqiconview.html#dragObject">dragObject</a>() { - return new <a href="qtextdrag.html">TQTextDrag</a>( <a href="ntqiconview.html#currentItem">currentItem</a>()->text(), this ); + return new <a href="tqtextdrag.html">TQTextDrag</a>( <a href="ntqiconview.html#currentItem">currentItem</a>()->text(), this ); } void <a name="f1"></a>DDIconView::slotNewItem( <a href="qdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a><TQIconDragItem>& ) { <a href="tqstring.html">TQString</a> label; - if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>( evt, label ) ) { + if ( TQTextDrag::<a href="tqtextdrag.html#decode">decode</a>( evt, label ) ) { DDIconViewItem *item = new DDIconViewItem( this, label ); <a name="x2824"></a> item-><a href="qiconviewitem.html#setRenameEnabled">setRenameEnabled</a>( TRUE ); } |