diff options
author | Martin Smith <msmith@trolltech.com> | 2009-08-17 12:28:45 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-08-17 12:30:02 (GMT) |
commit | 1ca6a2f3174fdfbbe080af920ab75558a1a9247e (patch) | |
tree | 706c3a4beb1b3a13be73ee3e28c40226ef150b29 /src/gui/graphicsview/qgraphicsitem.cpp | |
parent | 38f41726cf3a76a57ca15f7cc82e56a5aa2c5a1c (diff) | |
download | Qt-1ca6a2f3174fdfbbe080af920ab75558a1a9247e.zip Qt-1ca6a2f3174fdfbbe080af920ab75558a1a9247e.tar.gz Qt-1ca6a2f3174fdfbbe080af920ab75558a1a9247e.tar.bz2 |
qdoc: Fixed the bug that made reporting NOTIFY signals not work.
The signal was being associated with a particular property,
but in many classes, the NOTIFY signal applies to multiple
properties. Added a new function to the PropertyNode class
that adds the signal function without associating it with
any property.
Task-number: 259071
Diffstat (limited to 'src/gui/graphicsview/qgraphicsitem.cpp')
-rw-r--r-- | src/gui/graphicsview/qgraphicsitem.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/graphicsview/qgraphicsitem.cpp b/src/gui/graphicsview/qgraphicsitem.cpp index f454d7c..6d75db3 100644 --- a/src/gui/graphicsview/qgraphicsitem.cpp +++ b/src/gui/graphicsview/qgraphicsitem.cpp @@ -6831,11 +6831,12 @@ QGraphicsObject::QGraphicsObject(QGraphicsItemPrivate &dd, QGraphicsItem *parent By default, this property is true. - \sa QGraphicsItem::isEnabled(), QGraphicsItem::setEnabled(), enabledChanged() + \sa QGraphicsItem::isEnabled(), QGraphicsItem::setEnabled() + \sa QGraphicsObject::enabledChanged() */ /*! - \fn QGraphicsObject::enabledChanged() + \fn void QGraphicsObject::enabledChanged() This signal gets emitted whenever the item get's enabled or disabled. |