diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-10-23 06:32:05 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-10-23 06:34:19 (GMT) |
commit | 603c2a0475888928462679562e9b10acefaec629 (patch) | |
tree | 20f2a91c918b1522f9f75f9dbf0ce46b9a1fb8ce /src/declarative/qml/qmlmetaproperty.cpp | |
parent | 14b352dc58aa9790c8d1c2af0e546be975ef315c (diff) | |
download | Qt-603c2a0475888928462679562e9b10acefaec629.zip Qt-603c2a0475888928462679562e9b10acefaec629.tar.gz Qt-603c2a0475888928462679562e9b10acefaec629.tar.bz2 |
Fix Behavior support for value type properties.
Diffstat (limited to 'src/declarative/qml/qmlmetaproperty.cpp')
-rw-r--r-- | src/declarative/qml/qmlmetaproperty.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlmetaproperty.cpp b/src/declarative/qml/qmlmetaproperty.cpp index feedf13..baef71f 100644 --- a/src/declarative/qml/qmlmetaproperty.cpp +++ b/src/declarative/qml/qmlmetaproperty.cpp @@ -1067,6 +1067,12 @@ int QmlMetaProperty::coreIndex() const return d->core.coreIndex; } +/*! \internal */ +int QmlMetaProperty::valueTypeCoreIndex() const +{ + return d->valueTypeCoreIdx; +} + Q_GLOBAL_STATIC(QmlValueTypeFactory, qmlValueTypes); /*! |