diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2009-07-01 13:54:10 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2009-07-01 15:16:10 (GMT) |
commit | 5077f0be81128ee81e8c7875eb9d1e9423868808 (patch) | |
tree | 482e93f3f70e74a3c4b1ee0580fc16351186daa1 /src/corelib | |
parent | d0299745e511640df3e0a26e8c447d0960ac4546 (diff) | |
download | Qt-5077f0be81128ee81e8c7875eb9d1e9423868808.zip Qt-5077f0be81128ee81e8c7875eb9d1e9423868808.tar.gz Qt-5077f0be81128ee81e8c7875eb9d1e9423868808.tar.bz2 |
Animation: fixed a NOTIFY signal name that was wrong
Also slightly updated a demo
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/animation/qvariantanimation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/animation/qvariantanimation.h b/src/corelib/animation/qvariantanimation.h index b2d52d5..3e397ca 100644 --- a/src/corelib/animation/qvariantanimation.h +++ b/src/corelib/animation/qvariantanimation.h @@ -62,7 +62,7 @@ class Q_CORE_EXPORT QVariantAnimation : public QAbstractAnimation Q_OBJECT Q_PROPERTY(QVariant startValue READ startValue WRITE setStartValue) Q_PROPERTY(QVariant endValue READ endValue WRITE setEndValue) - Q_PROPERTY(QVariant currentValue READ currentValue NOTIFY currentValueChanged) + Q_PROPERTY(QVariant currentValue READ currentValue NOTIFY valueChanged) Q_PROPERTY(int duration READ duration WRITE setDuration) Q_PROPERTY(QEasingCurve easingCurve READ easingCurve WRITE setEasingCurve) |