summaryrefslogtreecommitdiffstats
path: root/src/declarative
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-09-04 01:59:37 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-09-04 02:00:50 (GMT)
commit68a2c152e6c13d63bc77309bebb5cac260937e68 (patch)
tree5fbedd57bcca6a60ab1e360144b6750b355678bf /src/declarative
parent2174ab779191b730b93097a093609cecbb98aa96 (diff)
downloadQt-68a2c152e6c13d63bc77309bebb5cac260937e68.zip
Qt-68a2c152e6c13d63bc77309bebb5cac260937e68.tar.gz
Qt-68a2c152e6c13d63bc77309bebb5cac260937e68.tar.bz2
Remove outdated comment.
Diffstat (limited to 'src/declarative')
-rw-r--r--src/declarative/qml/qmlmetaproperty.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlmetaproperty.cpp b/src/declarative/qml/qmlmetaproperty.cpp
index be02bcb..f9b222f 100644
--- a/src/declarative/qml/qmlmetaproperty.cpp
+++ b/src/declarative/qml/qmlmetaproperty.cpp
@@ -532,7 +532,7 @@ QmlAbstractBinding *QmlMetaProperty::binding() const
QmlAbstractBinding *binding = data->bindings;
while (binding) {
// ### This wont work for value types
- if (binding->propertyIndex() == d->coreIdx) //### should we check for enabled?
+ if (binding->propertyIndex() == d->coreIdx)
return binding;
binding = binding->m_nextBinding;
}