From 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 2 Jun 2024 23:07:22 +0900 Subject: Rename ntqwidget* related files to equivalent tqwidget* Signed-off-by: Michele Calgaro --- doc/html/dirview-example.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/dirview-example.html') diff --git a/doc/html/dirview-example.html b/doc/html/dirview-example.html index 1ffceb1e6..76c58739b 100644 --- a/doc/html/dirview-example.html +++ b/doc/html/dirview-example.html @@ -116,7 +116,7 @@ class DirectoryView : public TQListView TQ_OBJECT public: - DirectoryView( TQWidget *parent = 0, const char *name = 0, bool sdo = FALSE ); + DirectoryView( TQWidget *parent = 0, const char *name = 0, bool sdo = FALSE ); bool showDirsOnly() { return dirsOnly; } public slots: @@ -432,7 +432,7 @@ TQString Directory::fullName() * *****************************************************************************/ -DirectoryView::DirectoryView( TQWidget *parent, const char *name, bool sdo ) +DirectoryView::DirectoryView( TQWidget *parent, const char *name, bool sdo ) : TQListView( parent, name ), dirsOnly( sdo ), oldCurrent( 0 ), dropItem( 0 ), mousePressed( FALSE ) { @@ -449,7 +449,7 @@ TQString Directory::fullName() connect( this, TQ_SIGNAL( returnPressed( TQListViewItem * ) ), this, TQ_SLOT( slotFolderSelected( TQListViewItem * ) ) ); - setAcceptDrops( TRUE ); + setAcceptDrops( TRUE ); viewport()->setAcceptDrops( TRUE ); connect( autoopen_timer, TQ_SIGNAL( timeout() ), @@ -729,11 +729,11 @@ int main( int argc, char ** argv ) root->setOpen( TRUE ); // be interesting } - mw.resize( 400, 400 ); - mw.setCaption( "TQt Example - Directory Browser" ); + mw.resize( 400, 400 ); + mw.setCaption( "TQt Example - Directory Browser" ); mw.setAllColumnsShowFocus( TRUE ); a.setMainWidget( &mw ); - mw.show(); + mw.show(); return a.exec(); } -- cgit v1.2.3