summaryrefslogtreecommitdiffstats
path: root/src/network/socket/qnativesocketengine.cpp
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@digia.com>2013-10-02 16:51:05 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-08 00:46:27 +0200
commit4533cc994484a2308297e64e99af005fb4dca065 (patch)
treebc66283d11cdad100a1aec03f4e1d86bedc9a79e /src/network/socket/qnativesocketengine.cpp
parent50dd0232b61d8ea3fb9aab18972c6e19678656e6 (diff)
Doc: Adding mark-up to boolean default values.
Default values should have mark-up to denote that they are code. This commit changes: -"property is true" to "property is \c true". -"Returns true" to "Returns \c true". -"property is false" to "property is \c false". -"returns true" to "returns \c true". -"returns false" to "returns \c false". src/3rdparty and non-documentation instances were ignored. Task-number: QTBUG-33360 Change-Id: Ie87eaa57af947caa1230602b61c5c46292a4cf4e Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/network/socket/qnativesocketengine.cpp')
-rw-r--r--src/network/socket/qnativesocketengine.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/network/socket/qnativesocketengine.cpp b/src/network/socket/qnativesocketengine.cpp
index 536bc63ed0..6bf8626f97 100644
--- a/src/network/socket/qnativesocketengine.cpp
+++ b/src/network/socket/qnativesocketengine.cpp
@@ -335,8 +335,8 @@ QNativeSocketEngine::~QNativeSocketEngine()
/*!
Initializes a QNativeSocketEngine by creating a new socket of type \a
- socketType and network layer protocol \a protocol. Returns true on
- success; otherwise returns false.
+ socketType and network layer protocol \a protocol. Returns \c true on
+ success; otherwise returns \c false.
If the socket was already initialized, this function closes the
socket before reeinitializing it.
@@ -461,7 +461,7 @@ bool QNativeSocketEngine::initialize(qintptr socketDescriptor, QAbstractSocket::
}
/*!
- Returns true if the socket is valid; otherwise returns false. A
+ Returns \c true if the socket is valid; otherwise returns \c false. A
socket is valid if it has not been successfully initialized, or if
it has been closed.
*/
@@ -483,7 +483,7 @@ qintptr QNativeSocketEngine::socketDescriptor() const
/*!
Connects to the IP address and port specified by \a address and \a
- port. If the connection is established, this function returns true
+ port. If the connection is established, this function returns \c true
and the socket enters ConnectedState. Otherwise, false is
returned.
@@ -559,7 +559,7 @@ bool QNativeSocketEngine::connectToHostByName(const QString &name, quint16 port)
/*!
Binds the socket to the address \a address and port \a
- port. Returns true on success; otherwise false is returned. The
+ port. Returns \c true on success; otherwise false is returned. The
port may be 0, in which case an arbitrary unused port is assigned
automatically by the operating system.
@@ -708,7 +708,7 @@ qint64 QNativeSocketEngine::bytesAvailable() const
}
/*!
- Returns true if there is at least one datagram pending. This
+ Returns \c true if there is at least one datagram pending. This
function is only called by UDP sockets, where a datagram can have
a size of 0. TCP sockets call bytesAvailable().
*/
@@ -880,7 +880,7 @@ void QNativeSocketEngine::close()
reading. If \a timedOut is not 0 and \a msecs milliseconds have
passed, the value of \a timedOut is set to true.
- Returns true if data is available for reading; otherwise returns
+ Returns \c true if data is available for reading; otherwise returns
false.
This is a blocking function call; its use is disadvised in a
@@ -920,7 +920,7 @@ bool QNativeSocketEngine::waitForRead(int msecs, bool *timedOut)
writing. If \a timedOut is not 0 and \a msecs milliseconds have
passed, the value of \a timedOut is set to true.
- Returns true if data is available for writing; otherwise returns
+ Returns \c true if data is available for writing; otherwise returns
false.
This is a blocking function call; its use is disadvised in a