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.cpp | |
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.cpp')
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativepath.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativepath.cpp b/src/declarative/graphicsitems/qdeclarativepath.cpp index 62e03e7..0c069ce 100644 --- a/src/declarative/graphicsitems/qdeclarativepath.cpp +++ b/src/declarative/graphicsitems/qdeclarativepath.cpp @@ -893,6 +893,7 @@ void QDeclarativePathPercent::setValue(qreal value) { if (_value != value) { _value = value; + emit valueChanged(); emit changed(); } } |