diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-11 12:14:50 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-11 12:14:50 (GMT) |
commit | 61f8c6f4d6af1a2e73c918b43da8f25871b254b7 (patch) | |
tree | 39e472b03d3d6c642ad6723851717609ce017c3c /src/declarative/qml/qmlcustomparser.cpp | |
parent | edadc4df70324d3c4a875795d0032e129206f44b (diff) | |
download | Qt-61f8c6f4d6af1a2e73c918b43da8f25871b254b7.zip Qt-61f8c6f4d6af1a2e73c918b43da8f25871b254b7.tar.gz Qt-61f8c6f4d6af1a2e73c918b43da8f25871b254b7.tar.bz2 |
Remove some XML'isms from the parser/compiler interface
Diffstat (limited to 'src/declarative/qml/qmlcustomparser.cpp')
-rw-r--r-- | src/declarative/qml/qmlcustomparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlcustomparser.cpp b/src/declarative/qml/qmlcustomparser.cpp index 06035b0..e864df9 100644 --- a/src/declarative/qml/qmlcustomparser.cpp +++ b/src/declarative/qml/qmlcustomparser.cpp @@ -138,7 +138,7 @@ QmlCustomParserNodePrivate::fromProperty(QmlParser::Property *p) QmlCustomParserNode node = fromObject(v->object); prop.d->values << QVariant::fromValue(node); } else { - prop.d->values << QVariant::fromValue(v->primitive); + prop.d->values << QVariant::fromValue(v->primitive()); } } |