summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qobject.cpp
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2010-01-12 12:09:31 (GMT)
committerMartin Smith <msmith@trolltech.com>2010-01-12 12:09:31 (GMT)
commit4da15757269feb872432c43a3516a1349d6dcf39 (patch)
treeeeb745d1cf50d684cfccdbcb9ac5f21fd17e207d /src/corelib/kernel/qobject.cpp
parente1e67e84b223b36a01d767c163de730702057eb8 (diff)
downloadQt-4da15757269feb872432c43a3516a1349d6dcf39.zip
Qt-4da15757269feb872432c43a3516a1349d6dcf39.tar.gz
Qt-4da15757269feb872432c43a3516a1349d6dcf39.tar.bz2
doc: Updated the descriptions of the connection types.
Replaced the ambiguous "delivered" with the explanation that the blocking queued connection type blocks the emitter's thread until the slot finishes executing in the receiver's thread. Task-number: QTBUG-6392
Diffstat (limited to 'src/corelib/kernel/qobject.cpp')
-rw-r--r--src/corelib/kernel/qobject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/kernel/qobject.cpp b/src/corelib/kernel/qobject.cpp
index 3564a35..8346fe4 100644
--- a/src/corelib/kernel/qobject.cpp
+++ b/src/corelib/kernel/qobject.cpp
@@ -2456,7 +2456,7 @@ int QObject::receivers(const char *signal) const
If you pass the Qt::UniqueConnection \a type, the connection will only
be made if it is not a duplicate. If there is already a duplicate
(exact same signal to the exact same slot on the same objects),
- the connection will fail and connect will return false
+ the connection will fail and connect will return false.
The optional \a type parameter describes the type of connection
to establish. In particular, it determines whether a particular