diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
commit | 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch) | |
tree | be5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /doc/html/ftpclient-example.html | |
parent | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff) | |
download | tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.tar.gz tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.zip |
Rename text class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ftpclient-example.html')
-rw-r--r-- | doc/html/ftpclient-example.html | 14 |
1 files changed, 7 insertions, 7 deletions
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 <a href="ntqlabel.html">TQLabel</a>( tr("Unconnected"), statusBar() ); + stateFtp = new <a href="tqlabel.html">TQLabel</a>( tr("Unconnected"), statusBar() ); statusBar()->addWidget( stateFtp, 0, TRUE ); ftp = new <a href="tqftp.html">TQFtp</a>( this ); @@ -265,22 +265,22 @@ void FtpMainWindow::ftp_stateChanged( int state ) { switch ( (TQFtp::State)state ) { case TQFtp::Unconnected: -<a name="x765"></a> stateFtp-><a href="ntqlabel.html#setText">setText</a>( tr("Unconnected") ); +<a name="x765"></a> stateFtp-><a href="tqlabel.html#setText">setText</a>( tr("Unconnected") ); break; case TQFtp::HostLookup: - stateFtp-><a href="ntqlabel.html#setText">setText</a>( tr("Host lookup") ); + stateFtp-><a href="tqlabel.html#setText">setText</a>( tr("Host lookup") ); break; case TQFtp::Connecting: - stateFtp-><a href="ntqlabel.html#setText">setText</a>( tr("Connecting") ); + stateFtp-><a href="tqlabel.html#setText">setText</a>( tr("Connecting") ); break; case TQFtp::Connected: - stateFtp-><a href="ntqlabel.html#setText">setText</a>( tr("Connected") ); + stateFtp-><a href="tqlabel.html#setText">setText</a>( tr("Connected") ); break; case TQFtp::LoggedIn: - stateFtp-><a href="ntqlabel.html#setText">setText</a>( tr("Logged in") ); + stateFtp-><a href="tqlabel.html#setText">setText</a>( tr("Logged in") ); break; case TQFtp::Closing: - stateFtp-><a href="ntqlabel.html#setText">setText</a>( tr("Closing") ); + stateFtp-><a href="tqlabel.html#setText">setText</a>( tr("Closing") ); break; } } |