From 397b7afa8e3f32268c4454bf4783ac2a5a799658 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 15 Oct 2024 13:05:33 +0900 Subject: Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/ftpclient-example.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/html/ftpclient-example.html') diff --git a/doc/html/ftpclient-example.html b/doc/html/ftpclient-example.html index 9d84ada51..0296997c1 100644 --- a/doc/html/ftpclient-example.html +++ b/doc/html/ftpclient-example.html @@ -64,7 +64,7 @@ commands. The GUI parts are done in the Designer. #include <tqmessagebox.h> #include <tqfiledialog.h> #include <tqprogressdialog.h> -#include <ntqapplication.h> +#include <tqapplication.h> #include "connectdialog.h" #include "ftpviewitem.h" @@ -233,7 +233,7 @@ void FtpMainWindow::changePathOrDownload( TQListVi void FtpMainWindow::ftp_commandStarted() { - TQApplication::setOverrideCursor( TQCursor(TQt::WaitCursor) ); + TQApplication::setOverrideCursor( TQCursor(TQt::WaitCursor) ); if ( ftp->currentCommand() == TQFtp::List ) { remoteView->clear(); if ( currentFtpDir != "/" ) @@ -243,7 +243,7 @@ void FtpMainWindow::ftp_commandStarted() void FtpMainWindow::ftp_commandFinished() { - TQApplication::restoreOverrideCursor(); + TQApplication::restoreOverrideCursor(); delete ftp->currentDevice(); } @@ -324,19 +324,19 @@ void FtpMainWindow::ftp_rawCommandReply( int code, const ntqapplication.h> +#include <tqapplication.h> #include "ftpmainwindow.h" int main( int argc, char **argv ) { - TQApplication a( argc, argv ); + TQApplication a( argc, argv ); FtpMainWindow m; - a.setMainWidget( &m ); + a.setMainWidget( &m ); m.show(); - a.processEvents(); + a.processEvents(); m.connectToHost(); - return a.exec(); + return a.exec(); } -- cgit v1.2.3