diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2010-01-22 11:34:39 +0100 |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2010-01-22 11:34:39 +0100 |
commit | 2f48ff8cbefc70b2eb4de1e08a9e48c917486018 (patch) | |
tree | 93846d6ea3d4c757ae0f29a3fca8ce907c1d639a /src/corelib/animation/qpropertyanimation.cpp | |
parent | e29453ab71c3bf795dbc0cdeb1c88e28e2de1470 (diff) | |
download | qt4-tools-2f48ff8cbefc70b2eb4de1e08a9e48c917486018.tar.gz |
Adding a warning if the property of an animation is not writable
Diffstat (limited to 'src/corelib/animation/qpropertyanimation.cpp')
-rw-r--r-- | src/corelib/animation/qpropertyanimation.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/corelib/animation/qpropertyanimation.cpp b/src/corelib/animation/qpropertyanimation.cpp index 19b493d77b..37b79bae14 100644 --- a/src/corelib/animation/qpropertyanimation.cpp +++ b/src/corelib/animation/qpropertyanimation.cpp @@ -118,7 +118,9 @@ void QPropertyAnimationPrivate::updateMetaProperty() propertyType = QVariant::Invalid; if (!targetValue->dynamicPropertyNames().contains(propertyName)) qWarning("QPropertyAnimation: you're trying to animate a non-existing property %s of your QObject", propertyName.constData()); - } + } else if (!targetValue->metaObject()->property(propertyIndex).isWritable()) { + qWarning("QPropertyAnimation: you're trying to animate the non-writable property %s of your QObject", propertyName.constData()); + } } void QPropertyAnimationPrivate::updateProperty(const QVariant &newValue) |