aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4jsonobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4jsonobject.cpp')
-rw-r--r--src/qml/jsruntime/qv4jsonobject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4jsonobject.cpp b/src/qml/jsruntime/qv4jsonobject.cpp
index 74a25324c1..f6e9f5a3d1 100644
--- a/src/qml/jsruntime/qv4jsonobject.cpp
+++ b/src/qml/jsruntime/qv4jsonobject.cpp
@@ -704,7 +704,7 @@ QString Stringify::Str(const QString &key, const Value &v)
value = Encode(n->value());
else if (StringObject *so = o->as<StringObject>())
value = so->d()->value;
- else if (BooleanObject *b =o->asBooleanObject())
+ else if (BooleanObject *b = o->as<BooleanObject>())
value = Encode(b->value());
}