summaryrefslogtreecommitdiffstats
path: root/doc/html/ftpclient-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-09-04 11:53:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-09-04 13:56:43 +0900
commit0582c90a9ed4b965629267713f51c0da7c38b39d (patch)
treecae95e850081d0a7f2be6cef5837f43a28d53d2c /doc/html/ftpclient-example.html
parent39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 (diff)
downloadtqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.tar.gz
tqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.zip
Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ftpclient-example.html')
-rw-r--r--doc/html/ftpclient-example.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/ftpclient-example.html b/doc/html/ftpclient-example.html
index 4ae1c881a..fed20eb58 100644
--- a/doc/html/ftpclient-example.html
+++ b/doc/html/ftpclient-example.html
@@ -62,7 +62,7 @@ commands. The GUI parts are done in the Designer.
#include &lt;<a href="tqlineedit-h.html">tqlineedit.h</a>&gt;
#include &lt;<a href="tqspinbox-h.html">tqspinbox.h</a>&gt;
#include &lt;<a href="tqstatusbar-h.html">tqstatusbar.h</a>&gt;
-#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
+#include &lt;<a href="tqmessagebox-h.html">tqmessagebox.h</a>&gt;
#include &lt;<a href="tqfiledialog-h.html">tqfiledialog.h</a>&gt;
#include &lt;<a href="tqprogressdialog-h.html">tqprogressdialog.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
@@ -109,7 +109,7 @@ void FtpMainWindow::uploadFile()
<a href="tqfile.html">TQFile</a> *file = new <a href="tqfile.html">TQFile</a>( fileName );
if ( !file-&gt;<a href="tqfile.html#open">open</a>( <a href="tqfile.html#open">IO_ReadOnly</a> ) ) {
-<a name="x767"></a> TQMessageBox::<a href="ntqmessagebox.html#critical">critical</a>( this, tr("Upload error"),
+<a name="x767"></a> TQMessageBox::<a href="tqmessagebox.html#critical">critical</a>( this, tr("Upload error"),
tr("Can't open file '%1' for reading.").arg(fileName) );
delete file;
return;
@@ -155,7 +155,7 @@ void FtpMainWindow::downloadFile()
// asynchronous download operation
<a href="tqfile.html">TQFile</a> *file = new <a href="tqfile.html">TQFile</a>( fileName );
if ( !file-&gt;<a href="tqfile.html#open">open</a>( <a href="tqfile.html#open">IO_WriteOnly</a> ) ) {
- TQMessageBox::<a href="ntqmessagebox.html#critical">critical</a>( this, tr("Download error"),
+ TQMessageBox::<a href="tqmessagebox.html#critical">critical</a>( this, tr("Download error"),
tr("Can't open file '%1' for writing.").arg(fileName) );
delete file;
return;
@@ -251,7 +251,7 @@ void FtpMainWindow::ftp_commandFinished()
void FtpMainWindow::ftp_done( bool error )
{
if ( error ) {
-<a name="x754"></a> TQMessageBox::<a href="ntqmessagebox.html#critical">critical</a>( this, tr("FTP Error"), ftp-&gt;<a href="tqftp.html#errorString">errorString</a>() );
+<a name="x754"></a> TQMessageBox::<a href="tqmessagebox.html#critical">critical</a>( this, tr("FTP Error"), ftp-&gt;<a href="tqftp.html#errorString">errorString</a>() );
// If we are connected, but not logged in, it is not meaningful to stay
// connected to the server since the error is a really fatal one (login