From 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 24 Jul 2024 19:37:05 +0900 Subject: Rename text class nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/fileiconview-example.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/fileiconview-example.html') diff --git a/doc/html/fileiconview-example.html b/doc/html/fileiconview-example.html index a4619fe8d..bd5959802 100644 --- a/doc/html/fileiconview-example.html +++ b/doc/html/fileiconview-example.html @@ -1096,7 +1096,7 @@ protected: TQtFileIconView *fileview; DirectoryView *dirlist; TQProgressBar *progress; - TQLabel *label; + TQLabel *label; TQComboBox *pathCombo; TQToolButton *upButton, *mkdirButton; @@ -1136,7 +1136,7 @@ protected slots: #include <ntqsplitter.h> #include <ntqprogressbar.h> -#include <ntqlabel.h> +#include <tqlabel.h> #include <tqstatusbar.h> #include <tqtoolbar.h> #include <ntqcombobox.h> @@ -1215,7 +1215,7 @@ void FileMainWindow::setup() TQToolBar *toolbar = new TQToolBar( this, "toolbar" ); setRightJustification( TRUE ); - (void)new TQLabel( tr( " Path: " ), toolbar ); + (void)new TQLabel( tr( " Path: " ), toolbar ); pathCombo = new TQComboBox( TRUE, toolbar ); pathCombo->setAutoCompletion( TRUE ); @@ -1249,7 +1249,7 @@ void FileMainWindow::setup() setDockEnabled( DockLeft, FALSE ); setDockEnabled( DockRight, FALSE ); - label = new TQLabel( statusBar() ); + label = new TQLabel( statusBar() ); statusBar()->addWidget( label, 2, TRUE ); progress = new TQProgressBar( statusBar() ); statusBar()->addWidget( progress, 1, TRUE ); @@ -1293,7 +1293,7 @@ void FileMainWindow::directoryChanged( const FileMainWindow::slotStartReadDir( int dirs ) { - label->setText( tr( " Reading Directory..." ) ); + label->setText( tr( " Reading Directory..." ) ); progress->reset(); progress->setTotalSteps( dirs ); } @@ -1306,7 +1306,7 @@ void FileMainWindow::slotReadNextDir() void FileMainWindow::slotReadDirDone() { - label->setText( tr( " Reading Directory Done." ) ); + label->setText( tr( " Reading Directory Done." ) ); progress->setProgress( progress->totalSteps() ); } -- cgit v1.2.3