summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qobject.cpp
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2009-08-28 11:30:14 (GMT)
committerMartin Smith <msmith@trolltech.com>2009-08-28 11:30:14 (GMT)
commit7449a69e39b3ccd877da3e5ad7a9154ab7751dec (patch)
tree99751aaa5824dec2aba7b506f4018a430ba6878c /src/corelib/kernel/qobject.cpp
parent67f4c288107fd4e7003df6f882143afa8819844b (diff)
downloadQt-7449a69e39b3ccd877da3e5ad7a9154ab7751dec.zip
Qt-7449a69e39b3ccd877da3e5ad7a9154ab7751dec.tar.gz
Qt-7449a69e39b3ccd877da3e5ad7a9154ab7751dec.tar.bz2
doc: Fixed several qdoc errors.
Diffstat (limited to 'src/corelib/kernel/qobject.cpp')
-rw-r--r--src/corelib/kernel/qobject.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/corelib/kernel/qobject.cpp b/src/corelib/kernel/qobject.cpp
index 1f35c73..8abe28e 100644
--- a/src/corelib/kernel/qobject.cpp
+++ b/src/corelib/kernel/qobject.cpp
@@ -240,18 +240,20 @@ static void computeOffsets(const QMetaObject *metaobject, int *signalOffset, int
}
}
-/*! \internal
+/*
This vector contains the all connections from an object.
- Each object may have one vector containing the lists of connections for a given signal.
- The index in the vector correspond to the signal index.
- The signal index is the one returned by QObjectPrivate::signalIndex (not QMetaObject::indexOfSignal).
+ Each object may have one vector containing the lists of
+ connections for a given signal. The index in the vector correspond
+ to the signal index. The signal index is the one returned by
+ QObjectPrivate::signalIndex (not QMetaObject::indexOfSignal).
Negative index means connections to all signals.
This vector is protected by the object mutex (signalSlotMutexes())
- Each Connection is also part of a 'senders' linked list. The mutex of the receiver must be locked when touching
- the pointers of this linked list.
+ Each Connection is also part of a 'senders' linked list. The mutex
+ of the receiver must be locked when touching the pointers of this
+ linked list.
*/
class QObjectConnectionListVector : public QVector<QObjectPrivate::ConnectionList>
{