summaryrefslogtreecommitdiffstats
path: root/doc/networking.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
commitb35e0845dc9b3c8b9a5e52a682c769f383933fae (patch)
treee4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/networking.doc
parent1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff)
downloadtqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz
tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/networking.doc')
-rw-r--r--doc/networking.doc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/networking.doc b/doc/networking.doc
index c29cda3e3..fe7b0e792 100644
--- a/doc/networking.doc
+++ b/doc/networking.doc
@@ -76,7 +76,7 @@ QApplication object:
Copying files is simple:
\code
QUrlOperator url;
- url.copy( QString("ftp://ftp.trolltech.com/qt/source/qt-3.0.0.tar.gz"), "file:/tmp" );
+ url.copy( TQString("ftp://ftp.trolltech.com/qt/source/qt-3.0.0.tar.gz"), "file:/tmp" );
\endcode
The first (source) URL is copied to the second (destination) URL. The
\link QUrlOperator::copy() copy()\endlink function can be used to move
@@ -125,9 +125,9 @@ URL and download each one that is a regular file, (i.e. ignoring
directories). The FetchFiles object will emit signals as follows:
\list
\i start() -- emitted when it calls listChildren().
-\i startFile( QString ) -- emitted once for each file it starts to
+\i startFile( TQString ) -- emitted once for each file it starts to
copy, parameterised by the filename.
-\i finishedFile( QString ) -- emitted once for each file it finishes
+\i finishedFile( TQString ) -- emitted once for each file it finishes
copying, parameterised by the filename.
\i finished() -- emitted when all files have been read.
\i error() -- emitted if an error occurs.
@@ -218,7 +218,7 @@ ClientSocket constructor connects QSocket::readyRead() signal which is emitted w
This slot is called every time we receive some data via socket.
Our communication protocol is textual and line oriented, and socket communication is asynchronous (don't forget that, we don't know when readyRead() will be emitted, or will that be at the end of the line), so we have to check with QSocket::canReadLine() if the full line has been received. Because each input line presents one command in this protocol (list or get) we will process it and return generated answer through the socket back to the Client.
Function processCommand() parses the input line and if it recognizes LIST or GET command, calls corresponding (InfoData*)info methods - list and get, otherwise creates appropriate error message.
-QSocket is a subclass of QIODevice, thus we can use QTextStream to read and write lines to it.
+QSocket is a subclass of TQIODevice, thus we can use QTextStream to read and write lines to it.