aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4dateobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4dateobject.cpp')
-rw-r--r--src/qml/jsruntime/qv4dateobject.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4dateobject.cpp b/src/qml/jsruntime/qv4dateobject.cpp
index 05d4b6ee7f..2ecd80c58d 100644
--- a/src/qml/jsruntime/qv4dateobject.cpp
+++ b/src/qml/jsruntime/qv4dateobject.cpp
@@ -692,7 +692,7 @@ ReturnedValue DateCtor::construct(Managed *m, CallData *callData)
t = TimeClip(UTC(t));
}
- return Encode(m->engine()->newDateObject(Value::fromDouble(t)));
+ return Encode(m->engine()->newDateObject(Primitive::fromDouble(t)));
}
ReturnedValue DateCtor::call(Managed *m, CallData *)
@@ -704,7 +704,7 @@ ReturnedValue DateCtor::call(Managed *m, CallData *)
void DatePrototype::init(ExecutionEngine *engine, const Value &ctor)
{
ctor.objectValue()->defineReadonlyProperty(engine->id_prototype, Value::fromObject(this));
- ctor.objectValue()->defineReadonlyProperty(engine->id_length, Value::fromInt32(7));
+ ctor.objectValue()->defineReadonlyProperty(engine->id_length, Primitive::fromInt32(7));
LocalTZA = getLocalTZA();
ctor.objectValue()->defineDefaultProperty(QStringLiteral("parse"), method_parse, 1);