From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/simple_dd-example.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 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 d3b7f31c7..e7d35acb2 100644 --- a/doc/html/simple_dd-example.html +++ b/doc/html/simple_dd-example.html @@ -77,9 +77,9 @@ private: class DDIconViewItem : public TQIconViewItem { public: - DDIconViewItem( TQIconView *parent, const TQString& text, const TQPixmap& icon ) : + DDIconViewItem( TQIconView *parent, const TQString& text, const TQPixmap& icon ) : TQIconViewItem( parent, text, icon ) {} - DDIconViewItem( TQIconView *parent, const TQString &text ) : + DDIconViewItem( TQIconView *parent, const TQString &text ) : TQIconViewItem( parent, text ) {} // High-level drag and drop bool acceptDrop( const TQMimeSource *mime ) const; @@ -198,7 +198,7 @@ const char* green_icon[]={ void DDListBox::dropEvent( TQDropEvent *evt ) { - TQString text; + TQString text; if ( TQTextDrag::decode( evt, text ) ) insertItem( text ); @@ -235,7 +235,7 @@ const char* green_icon[]={ void DDIconViewItem::dropped( TQDropEvent *evt, const TQValueList<TQIconDragItem>& ) { - TQString label; + TQString label; if ( TQTextDrag::decode( evt, label ) ) setText( label ); @@ -251,7 +251,7 @@ const char* green_icon[]={ void DDIconView::slotNewItem( TQDropEvent *evt, const TQValueList<TQIconDragItem>& ) { - TQString label; + TQString label; if ( TQTextDrag::decode( evt, label ) ) { DDIconViewItem *item = new DDIconViewItem( this, label ); -- cgit v1.2.1