diff options
author | Olivier Goffart <olivier.goffart@nokia.com> | 2010-08-19 15:02:05 (GMT) |
---|---|---|
committer | Olivier Goffart <olivier.goffart@nokia.com> | 2010-08-19 15:04:20 (GMT) |
commit | d31e3bd3e27e9249df451b4b2a3a3a16e9160fa4 (patch) | |
tree | b6a845728c4f8d50b9fecf6807dcf2c9c1cea32c /src/declarative/graphicsitems | |
parent | ee2ff544fec7a40ff3096edc4bf7cc7ca8cfa191 (diff) | |
download | Qt-d31e3bd3e27e9249df451b4b2a3a3a16e9160fa4.zip Qt-d31e3bd3e27e9249df451b4b2a3a3a16e9160fa4.tar.gz Qt-d31e3bd3e27e9249df451b4b2a3a3a16e9160fa4.tar.bz2 |
Remove wrong NOTIFY attribute.
They where related to not unreachable signals.
It would cause the compilation to break
Diffstat (limited to 'src/declarative/graphicsitems')
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativepath_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativepath_p.h b/src/declarative/graphicsitems/qdeclarativepath_p.h index 5ab5cfd..195057c 100644 --- a/src/declarative/graphicsitems/qdeclarativepath_p.h +++ b/src/declarative/graphicsitems/qdeclarativepath_p.h @@ -190,7 +190,7 @@ private: class Q_AUTOTEST_EXPORT QDeclarativePathPercent : public QDeclarativePathElement { Q_OBJECT - Q_PROPERTY(qreal value READ value WRITE setValue NOTIFY changed) + Q_PROPERTY(qreal value READ value WRITE setValue) public: QDeclarativePathPercent(QObject *parent=0) : QDeclarativePathElement(parent) {} |