diff options
author | David Boddie <dboddie@trolltech.com> | 2009-11-04 18:49:16 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2009-11-04 18:49:16 (GMT) |
commit | 5980acde99d393010d7d713006e5d4c34d945cf7 (patch) | |
tree | 60bf55ba19e40d80c2b48adf319529c9e9876d06 /doc | |
parent | 7905101fb5ef18c776be515b9287356b1efc5ceb (diff) | |
parent | c1eae9d5842c73719d7719cccc4beca55711714d (diff) | |
download | Qt-5980acde99d393010d7d713006e5d4c34d945cf7.zip Qt-5980acde99d393010d7d713006e5d4c34d945cf7.tar.gz Qt-5980acde99d393010d7d713006e5d4c34d945cf7.tar.bz2 |
Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt-doc-team into 4.6
Conflicts:
src/gui/kernel/qevent.cpp
src/gui/kernel/qgesture.cpp
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/examples/ftp.qdoc | 10 | ||||
-rw-r--r-- | doc/src/network-programming/qtnetwork.qdoc | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/examples/ftp.qdoc b/doc/src/examples/ftp.qdoc index 782613c..68fb0d7 100644 --- a/doc/src/examples/ftp.qdoc +++ b/doc/src/examples/ftp.qdoc @@ -90,12 +90,12 @@ the FTP server, and registers whether an entry represents a directory or a file. We use the QFile object to download files from the FTP server. - + \section1 FtpWindow Class Implementation We skip the \c FtpWindow constructor as it only contains code for setting up the GUI, which is explained in other examples. - + We move on to the slots, starting with \c connectOrDisconnect(). \snippet examples/network/qftp/ftpwindow.cpp 0 @@ -137,7 +137,7 @@ \snippet examples/network/qftp/ftpwindow.cpp 3 \dots \snippet examples/network/qftp/ftpwindow.cpp 4 - + We first fetch the name of the file, which we find in the selected item of \c fileList. We then start the download by using QFtp::get(). QFtp will send progress signals during the download @@ -153,7 +153,7 @@ finished a QFtp::Command. If an error occurred during the command, QFtp will set \c error to one of the values in the QFtp::Error enum; otherwise, \c error is zero. - + \snippet examples/network/qftp/ftpwindow.cpp 7 After login, the QFtp::list() function will list the top-level @@ -165,7 +165,7 @@ When a \l{QFtp::}{Get} command is finished, a file has finished downloading (or an error occurred during the download). - + \snippet examples/network/qftp/ftpwindow.cpp 9 After a \l{QFtp::}{List} command is performed, we have to check if diff --git a/doc/src/network-programming/qtnetwork.qdoc b/doc/src/network-programming/qtnetwork.qdoc index b44b84f..c20adaf 100644 --- a/doc/src/network-programming/qtnetwork.qdoc +++ b/doc/src/network-programming/qtnetwork.qdoc @@ -101,7 +101,7 @@ Each application or library can create one or more instances of QNetworkAccessManager to handle network communication. - + \section1 Writing FTP Clients with QFtp FTP (File Transfer Protocol) is a protocol used almost exclusively |