From 1f0ce8533cc837aa2d4155b5fc17d2004bed0197 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 5 Jun 2024 19:02:23 +0900 Subject: Rename template library nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/simple_dd-example.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/simple_dd-example.html') diff --git a/doc/html/simple_dd-example.html b/doc/html/simple_dd-example.html index a80df70c7..d3b7f31c7 100644 --- a/doc/html/simple_dd-example.html +++ b/doc/html/simple_dd-example.html @@ -83,7 +83,7 @@ public: TQIconViewItem( parent, text ) {} // High-level drag and drop bool acceptDrop( const TQMimeSource *mime ) const; - void dropped( TQDropEvent *evt, const TQValueList<TQIconDragItem>& ); + void dropped( TQDropEvent *evt, const TQValueList<TQIconDragItem>& ); }; @@ -96,7 +96,7 @@ public: // High-level drag and drop TQDragObject *dragObject(); public slots: - void slotNewItem( TQDropEvent *evt, const TQValueList<TQIconDragItem>& list ); + void slotNewItem( TQDropEvent *evt, const TQValueList<TQIconDragItem>& list ); }; @@ -233,7 +233,7 @@ const char* green_icon[]={ } -void DDIconViewItem::dropped( TQDropEvent *evt, const TQValueList<TQIconDragItem>& ) +void DDIconViewItem::dropped( TQDropEvent *evt, const TQValueList<TQIconDragItem>& ) { TQString label; @@ -249,7 +249,7 @@ const char* green_icon[]={ return new TQTextDrag( currentItem()->text(), this ); } -void DDIconView::slotNewItem( TQDropEvent *evt, const TQValueList<TQIconDragItem>& ) +void DDIconView::slotNewItem( TQDropEvent *evt, const TQValueList<TQIconDragItem>& ) { TQString label; @@ -275,8 +275,8 @@ int main( int argc, char *argv[] ) // Set up the connection so that we can drop items into the icon view TQObject::connect( - iv, TQ_SIGNAL(dropped(TQDropEvent*, const TQValueList<TQIconDragItem>&)), - iv, TQ_SLOT(slotNewItem(TQDropEvent*, const TQValueList<TQIconDragItem>&))); + iv, TQ_SIGNAL(dropped(TQDropEvent*, const TQValueList<TQIconDragItem>&)), + iv, TQ_SLOT(slotNewItem(TQDropEvent*, const TQValueList<TQIconDragItem>&))); // Populate the TQIconView with icons DDIconViewItem *item; -- cgit v1.2.3