diff options
author | Geir Vattekar <geir.vattekar@nokia.com> | 2010-10-06 14:11:00 (GMT) |
---|---|---|
committer | Geir Vattekar <geir.vattekar@nokia.com> | 2010-10-06 14:11:00 (GMT) |
commit | b49dcab1048a5497c85205702bdcab6b243ced0b (patch) | |
tree | cc15c40203e0ec3a78d42386852f48abad45fefe /src/corelib | |
parent | d0cefe5e80259f089cba73e98610a6bbf93f706a (diff) | |
parent | 8f82eb0dd996fe312192199b11abbba2b01943f0 (diff) | |
download | Qt-b49dcab1048a5497c85205702bdcab6b243ced0b.zip Qt-b49dcab1048a5497c85205702bdcab6b243ced0b.tar.gz Qt-b49dcab1048a5497c85205702bdcab6b243ced0b.tar.bz2 |
Merge branch '4.7' of git@scm.dev.nokia.troll.no:qt/qt-doc-team into 4.7
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/global/qnamespace.qdoc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/corelib/global/qnamespace.qdoc b/src/corelib/global/qnamespace.qdoc index ad0ffd7..32e85db 100644 --- a/src/corelib/global/qnamespace.qdoc +++ b/src/corelib/global/qnamespace.qdoc @@ -511,9 +511,11 @@ delivery at a later time. \value AutoConnection - (default) Same as DirectConnection, if the emitter and - receiver are in the same thread. Same as QueuedConnection, - if the emitter and receiver are in different threads. + (default) If the object sending the signal is in a different thread + than the receiving object, the signal is queued, behaving as + Qt::QueuedConnection. If both objects are in the same thread, + the slot is invoked directly, behaving as Qt::DirectConnection. The + type of connection is determined when the signal is emitted. \value DirectConnection The slot is invoked immediately, when the signal is |