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/ftpclient-example.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'doc/html/ftpclient-example.html') diff --git a/doc/html/ftpclient-example.html b/doc/html/ftpclient-example.html index 3e13ae338..053bdf566 100644 --- a/doc/html/ftpclient-example.html +++ b/doc/html/ftpclient-example.html @@ -72,7 +72,7 @@ commands. The GUI parts are done in the Designer. void FtpMainWindow::init() { - stateFtp = new TQLabel( tr("Unconnected"), statusBar() ); + stateFtp = new TQLabel( tr("Unconnected"), statusBar() ); statusBar()->addWidget( stateFtp, 0, TRUE ); ftp = new TQFtp( this ); @@ -265,22 +265,22 @@ void FtpMainWindow::ftp_stateChanged( int state ) { switch ( (TQFtp::State)state ) { case TQFtp::Unconnected: - stateFtp->setText( tr("Unconnected") ); + stateFtp->setText( tr("Unconnected") ); break; case TQFtp::HostLookup: - stateFtp->setText( tr("Host lookup") ); + stateFtp->setText( tr("Host lookup") ); break; case TQFtp::Connecting: - stateFtp->setText( tr("Connecting") ); + stateFtp->setText( tr("Connecting") ); break; case TQFtp::Connected: - stateFtp->setText( tr("Connected") ); + stateFtp->setText( tr("Connected") ); break; case TQFtp::LoggedIn: - stateFtp->setText( tr("Logged in") ); + stateFtp->setText( tr("Logged in") ); break; case TQFtp::Closing: - stateFtp->setText( tr("Closing") ); + stateFtp->setText( tr("Closing") ); break; } } -- cgit v1.2.3