diff options
author | David Boddie <dboddie@trolltech.com> | 2009-08-10 14:34:12 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2009-08-10 14:34:12 (GMT) |
commit | 724d7721331b444a6dd817cd4e12909a2cae709a (patch) | |
tree | 1bfe0c6ca1e3c076c99dd3fcbc37982b02446f5a | |
parent | b9718d4fdd092ee63d91b5f84f0c34d23c3a18ac (diff) | |
download | Qt-724d7721331b444a6dd817cd4e12909a2cae709a.zip Qt-724d7721331b444a6dd817cd4e12909a2cae709a.tar.gz Qt-724d7721331b444a6dd817cd4e12909a2cae709a.tar.bz2 |
Doc: Fixed spelling mistake and some acronyms.
Task-number: 259268
Reviewed-by: Trust Me
-rw-r--r-- | src/network/access/qhttp.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/network/access/qhttp.cpp b/src/network/access/qhttp.cpp index faa2398..4c06848 100644 --- a/src/network/access/qhttp.cpp +++ b/src/network/access/qhttp.cpp @@ -1597,11 +1597,11 @@ QHttp::~QHttp() This enum is used to specify the mode of connection to use: - \value ConnectionModeHttp The connection is a regular Http connection to the server - \value ConnectionModeHttps The Https protocol is used and the connection is encrypted using SSL. + \value ConnectionModeHttp The connection is a regular HTTP connection to the server + \value ConnectionModeHttps The HTTPS protocol is used and the connection is encrypted using SSL. - When using the Https mode, care should be taken to connect to the sslErrors signal, and - handle possible Ssl errors. + When using the HTTPS mode, care should be taken to connect to the sslErrors signal, and + handle possible SSL errors. \sa QSslSocket */ @@ -2039,7 +2039,7 @@ int QHttp::setHost(const QString &hostName, quint16 port) port \a port using the connection mode \a mode. If port is 0, it will use the default port for the \a mode used - (80 for Http and 443 fopr Https). + (80 for HTTP and 443 for HTTPS). The function does not block; instead, it returns immediately. The request is scheduled, and its execution is performed asynchronously. The |