diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-13 02:26:30 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-13 02:26:45 (GMT) |
commit | 57e0665cb997046389066bd2d2b26a30c367ece8 (patch) | |
tree | e73b0bc85608a8bd902bc682beece9659d1c2fe7 /src/declarative/qml/qmlparser_p.h | |
parent | c87665193a9198168e6e42978833ce6c96ae184d (diff) | |
download | Qt-57e0665cb997046389066bd2d2b26a30c367ece8.zip Qt-57e0665cb997046389066bd2d2b26a30c367ece8.tar.gz Qt-57e0665cb997046389066bd2d2b26a30c367ece8.tar.bz2 |
Fix qmlparser test failure
Diffstat (limited to 'src/declarative/qml/qmlparser_p.h')
-rw-r--r-- | src/declarative/qml/qmlparser_p.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlparser_p.h b/src/declarative/qml/qmlparser_p.h index a6894fb..d4f279b 100644 --- a/src/declarative/qml/qmlparser_p.h +++ b/src/declarative/qml/qmlparser_p.h @@ -44,6 +44,7 @@ #include <QByteArray> #include <QList> +#include <QtCore/qstring.h> #include <qml.h> #include <private/qmlrefcount_p.h> #include <private/qobject_p.h> @@ -173,7 +174,7 @@ namespace QmlParser Variant(); Variant(const Variant &); Variant(bool); - Variant(double); + Variant(double, const QString &asWritten=QString()); Variant(const QString &, Type = String); Variant &operator=(const Variant &); |