diff options
author | Lars Knoll <[email protected]> | 2013-09-25 12:24:36 +0200 |
---|---|---|
committer | The Qt Project <[email protected]> | 2013-09-28 13:33:24 +0200 |
commit | cf2a253f2f60c9f0c61682527d80143e72b355d4 (patch) | |
tree | d60e8be50437e6f15513e25155817b902a2062c7 /src/qml/jsruntime/qv4objectiterator.cpp | |
parent | 7872b380063d0497ba62fecfdc92148f1ea947af (diff) |
Move Value::fromBool, ... to a new Primitive class
This will simplify finding the remaining direct usages of
QV4::Value that need fixing.
Change-Id: I223099727436d5748027c84c53d9dfc4028e38ed
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4objectiterator.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4objectiterator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4objectiterator.cpp b/src/qml/jsruntime/qv4objectiterator.cpp index a9c9e817f7..1c12704545 100644 --- a/src/qml/jsruntime/qv4objectiterator.cpp +++ b/src/qml/jsruntime/qv4objectiterator.cpp @@ -53,7 +53,7 @@ ObjectIterator::ObjectIterator(Object *o, uint flags) , memberIndex(0) , flags(flags) { - tmpDynamicProperty.value = Value::undefinedValue(); + tmpDynamicProperty.value = Primitive::undefinedValue(); } Property *ObjectIterator::next(String **name, uint *index, PropertyAttributes *attrs) |