From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/ntqftp.html | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'doc/html/ntqftp.html') diff --git a/doc/html/ntqftp.html b/doc/html/ntqftp.html index 7c51940cd..8af5d5a9f 100644 --- a/doc/html/ntqftp.html +++ b/doc/html/ntqftp.html @@ -321,7 +321,7 @@ Returns the number of bytes that can be read from the data socket at the moment.

See also get(), readyRead(), readBlock(), and readAll(). -

int TQFtp::cd ( const TQString & dir ) +

int TQFtp::cd ( const TQString & dir )

Changes the working directory of the server to dir.

The function does not block and returns immediately. The command @@ -373,7 +373,7 @@ the processing; otherwise error is FALSE.

See also commandFinished() and done().

Example: network/ftpclient/ftpmainwindow.ui.h. -

int TQFtp::connectToHost ( const TQString & host, TQ_UINT16 port = 21 ) +

int TQFtp::connectToHost ( const TQString & host, TQ_UINT16 port = 21 )

Connects to the FTP server host using port port.

The stateChanged() signal is emitted when the state of the @@ -444,7 +444,7 @@ what when wrong when receiving a commandFinished( signal with the error argument set to TRUE.

If you start a new command, the error status is reset to NoError. -

TQString TQFtp::errorString () const +

TQString TQFtp::errorString () const

Returns a human-readable description of the last error that occurred. This is useful for presenting a error message to the @@ -456,7 +456,7 @@ the message comes from TQt, the string has already passed through tr().

Example: network/ftpclient/ftpmainwindow.ui.h. -

int TQFtp::get ( const TQString & file, TQIODevice * dev = 0 ) +

int TQFtp::get ( const TQString & file, TQIODevice * dev = 0 )

Downloads the file file from the server.

If dev is 0, then the readyRead() signal is emitted when there @@ -494,7 +494,7 @@ been executed; otherwise returns FALSE. scheduled command.

See also clearPendingCommands(), currentId(), and currentCommand(). -

int TQFtp::list ( const TQString & dir = TQString::null ) +

int TQFtp::list ( const TQString & dir = TQString::null )

Lists the contents of directory dir on the FTP server. If dir is empty, it lists the contents of the current directory.

The listInfo() signal is emitted for each directory entry found. @@ -516,7 +516,7 @@ finds. The details of the entry are stored in i.

See also list().

Example: network/ftpclient/ftpmainwindow.ui.h. -

int TQFtp::login ( const TQString & user = TQString::null, const TQString & password = TQString::null ) +

int TQFtp::login ( const TQString & user = TQString::null, const TQString & password = TQString::null )

Logs in to the FTP server with the username user and the password password. @@ -532,7 +532,7 @@ emitted.

See also commandStarted() and commandFinished().

Example: network/ftpclient/ftpmainwindow.ui.h. -

int TQFtp::mkdir ( const TQString & dir ) +

int TQFtp::mkdir ( const TQString & dir )

Creates a directory called dir on the server.

The function does not block and returns immediately. The command @@ -544,7 +544,7 @@ emitted. When it is finished the commandFinished() signal is emitted.

See also commandStarted() and commandFinished(). -

int TQFtp::put ( TQIODevice * dev, const TQString & file ) +

int TQFtp::put ( TQIODevice * dev, const TQString & file )

Reads the data from the IO device dev, and writes it to the file called file on the server. The data is read in chunks from @@ -556,7 +556,7 @@ operation (it is safe to delete it when the commandFi emitted).

Example: network/ftpclient/ftpmainwindow.ui.h. -

int TQFtp::put ( const TQByteArray & data, const TQString & file ) +

int TQFtp::put ( const TQByteArray & data, const TQString & file )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Writes the data data to the file called file on the server. @@ -571,7 +571,7 @@ emitted. When it is finished the commandFinished() signal is emitted.

See also dataTransferProgress(), commandStarted(), and commandFinished(). -

int TQFtp::rawCommand ( const TQString & command ) +

int TQFtp::rawCommand ( const TQString & command )

Sends the raw FTP command command to the FTP server. This is useful for low-level FTP access. If the operation you wish to @@ -588,7 +588,7 @@ emitted.

See also rawCommandReply(), commandStarted(), and commandFinished().

Example: network/ftpclient/ftpmainwindow.ui.h. -

void TQFtp::rawCommandReply ( int replyCode, const TQString & detail ) [signal] +

void TQFtp::rawCommandReply ( int replyCode, const TQString & detail ) [signal]

This signal is emitted in response to the rawCommand() function. @@ -624,7 +624,7 @@ complete data, just connect to the commandFinished

See also get(), readBlock(), readAll(), and bytesAvailable(). -

int TQFtp::remove ( const TQString & file ) +

int TQFtp::remove ( const TQString & file )

Deletes the file called file from the server.

The function does not block and returns immediately. The command @@ -637,7 +637,7 @@ emitted.

See also commandStarted() and commandFinished().

Example: network/ftpclient/ftpmainwindow.ui.h. -

int TQFtp::rename ( const TQString & oldname, const TQString & newname ) +

int TQFtp::rename ( const TQString & oldname, const TQString & newname )

Renames the file called oldname to newname on the server.

The function does not block and returns immediately. The command @@ -649,7 +649,7 @@ emitted. When it is finished the commandFinished() signal is emitted.

See also commandStarted() and commandFinished(). -

int TQFtp::rmdir ( const TQString & dir ) +

int TQFtp::rmdir ( const TQString & dir )

Removes the directory called dir from the server.

The function does not block and returns immediately. The command -- cgit v1.2.3