summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlparser.cpp
diff options
context:
space:
mode:
authormae <qt-info@nokia.com>2009-04-17 17:32:32 (GMT)
committerRoberto Raggi <roberto.raggi@nokia.com>2009-04-24 07:52:34 (GMT)
commitab83f16fd07300342d786f48a82b4d81f77f670d (patch)
tree9b109f8e2188aabcfa03f8d7f98e8e1ed63aa7fb /src/declarative/qml/qmlparser.cpp
parentb080c837c4c63b1cd0fdea9ae483cad824aef0d1 (diff)
downloadQt-ab83f16fd07300342d786f48a82b4d81f77f670d.zip
Qt-ab83f16fd07300342d786f48a82b4d81f77f670d.tar.gz
Qt-ab83f16fd07300342d786f48a82b4d81f77f670d.tar.bz2
support both *.qml and *.whatever with autodetection. Some debug output, some fixes. Some stuff works now, biggest omission is UiObjectBinding to get the more complex examples working.
Diffstat (limited to 'src/declarative/qml/qmlparser.cpp')
-rw-r--r--src/declarative/qml/qmlparser.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlparser.cpp b/src/declarative/qml/qmlparser.cpp
index 54db32e..6c71a97 100644
--- a/src/declarative/qml/qmlparser.cpp
+++ b/src/declarative/qml/qmlparser.cpp
@@ -57,6 +57,7 @@
#include <private/qmlvmemetaobject_p.h>
#include "private/qmlxmlparser_p.h"
#include <private/qmlcompiler_p.h>
+#include <QtDebug>
QT_BEGIN_NAMESPACE
@@ -151,6 +152,7 @@ Object *QmlParser::Property::getValue()
void QmlParser::Property::addValue(Value *v)
{
+ qDebug() << "Property" << name << "addValue" << v->primitive;
values << v;
}