summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcustomparser.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-05-11 12:14:50 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-05-11 12:14:50 (GMT)
commit61f8c6f4d6af1a2e73c918b43da8f25871b254b7 (patch)
tree39e472b03d3d6c642ad6723851717609ce017c3c /src/declarative/qml/qmlcustomparser.cpp
parentedadc4df70324d3c4a875795d0032e129206f44b (diff)
downloadQt-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.cpp2
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());
}
}