From 0cf411b09cf5d8970b873a338a69eae98d5ce5d8 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 8 Jun 2024 12:56:43 +0900 Subject: Rename text nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/iconview-simple_dd-main-cpp.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/iconview-simple_dd-main-cpp.html') 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[]={ void DDListBox::dragEnterEvent( TQDragEnterEvent *evt ) { - if ( TQTextDrag::canDecode( evt ) ) + if ( TQTextDrag::canDecode( evt ) ) evt->accept(); } @@ -129,7 +129,7 @@ const char* green_icon[]={ { TQString text; - if ( TQTextDrag::decode( evt, text ) ) + if ( TQTextDrag::decode( evt, text ) ) insertItem( text ); } @@ -144,7 +144,7 @@ const char* green_icon[]={ void DDListBox::mouseMoveEvent( TQMouseEvent * ) { if ( dragging ) { - TQDragObject *d = new TQTextDrag( currentText(), this ); + TQDragObject *d = new TQTextDrag( currentText(), this ); d->dragCopy(); // do NOT delete d. dragging = FALSE; } @@ -166,7 +166,7 @@ const char* green_icon[]={ { TQString label; - if ( TQTextDrag::decode( evt, label ) ) + if ( TQTextDrag::decode( evt, label ) ) setText( label ); } @@ -175,14 +175,14 @@ const char* green_icon[]={ TQDragObject *DDIconView::dragObject() { - return new TQTextDrag( currentItem()->text(), this ); + return new TQTextDrag( currentItem()->text(), this ); } void DDIconView::slotNewItem( TQDropEvent *evt, const TQValueList<TQIconDragItem>& ) { TQString label; - if ( TQTextDrag::decode( evt, label ) ) { + if ( TQTextDrag::decode( evt, label ) ) { DDIconViewItem *item = new DDIconViewItem( this, label ); item->setRenameEnabled( TRUE ); } -- cgit v1.2.3