diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-08-17 07:40:03 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-08-17 07:40:03 (GMT) |
commit | 8f60083c0ea560de3dedd5dfd087a06212594fc9 (patch) | |
tree | 1ed22be0e0f2df7ede3c35024fc548f89bc7b6e1 /src/declarative/qml/qmldom.cpp | |
parent | 02e5239002786a55d68f04a512baa7d4c5f40e66 (diff) | |
download | Qt-8f60083c0ea560de3dedd5dfd087a06212594fc9.zip Qt-8f60083c0ea560de3dedd5dfd087a06212594fc9.tar.gz Qt-8f60083c0ea560de3dedd5dfd087a06212594fc9.tar.bz2 |
More namespace improvements
- Store and find QML version ranges efficiently
- Require version for QmlType-from-string
- Removed unused version-ignorant QmlType-from-string functions
- Some attached properties now resolve (eg. tst_qmlparser)
- Still no better:
- interfaces not versioned
- some attached properties still hard-codec to Qt
Diffstat (limited to 'src/declarative/qml/qmldom.cpp')
-rw-r--r-- | src/declarative/qml/qmldom.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qmldom.cpp b/src/declarative/qml/qmldom.cpp index c6b7192..cdd5eef 100644 --- a/src/declarative/qml/qmldom.cpp +++ b/src/declarative/qml/qmldom.cpp @@ -967,7 +967,7 @@ QByteArray QmlDomObject::customTypeData() const bool QmlDomObject::isComponent() const { return d->isVirtualComponent || - (d->object && d->object->typeName == "Qt/4.6/Component"); + (d->object && d->object->typeName == "Qt/Component"); } /*! |