diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-08-24 03:46:24 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-08-25 06:55:49 (GMT) |
commit | a662c0014a55ac3bf57c6e861334a125f6af07aa (patch) | |
tree | e040de3f05262c6f26e9700763b5f72183ecba3a /src/declarative/graphicsitems/qdeclarativepath_p.h | |
parent | 9df775a982316c34547181628e0ad244851a24ac (diff) | |
download | Qt-a662c0014a55ac3bf57c6e861334a125f6af07aa.zip Qt-a662c0014a55ac3bf57c6e861334a125f6af07aa.tar.gz Qt-a662c0014a55ac3bf57c6e861334a125f6af07aa.tar.bz2 |
Re-insert and emit the correct NOTIFY signals following the removal
of some NOTIFY parameters in d31e3bd3e27e9249df451b4b2a3a3a16e9160fa4
Diffstat (limited to 'src/declarative/graphicsitems/qdeclarativepath_p.h')
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativepath_p.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativepath_p.h b/src/declarative/graphicsitems/qdeclarativepath_p.h index 195057c..21e1b24 100644 --- a/src/declarative/graphicsitems/qdeclarativepath_p.h +++ b/src/declarative/graphicsitems/qdeclarativepath_p.h @@ -190,13 +190,16 @@ private: class Q_AUTOTEST_EXPORT QDeclarativePathPercent : public QDeclarativePathElement { Q_OBJECT - Q_PROPERTY(qreal value READ value WRITE setValue) + Q_PROPERTY(qreal value READ value WRITE setValue NOTIFY valueChanged) public: QDeclarativePathPercent(QObject *parent=0) : QDeclarativePathElement(parent) {} qreal value() const; void setValue(qreal value); +signals: + void valueChanged(); + private: qreal _value; }; |