summaryrefslogtreecommitdiffstats
path: root/src/v4/qv4mathobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/v4/qv4mathobject.cpp')
-rw-r--r--src/v4/qv4mathobject.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/v4/qv4mathobject.cpp b/src/v4/qv4mathobject.cpp
index e40faba8..eae50c4d 100644
--- a/src/v4/qv4mathobject.cpp
+++ b/src/v4/qv4mathobject.cpp
@@ -40,6 +40,7 @@
****************************************************************************/
#include "qv4mathobject.h"
+#include "qv4objectproto.h"
#include <cmath>
#include <qmath.h>
@@ -52,6 +53,7 @@ static const double qt_PI = 2.0 * ::asin(1.0);
MathObject::MathObject(ExecutionContext *ctx)
{
type = Type_MathObject;
+ prototype = ctx->engine->objectPrototype;
defineReadonlyProperty(ctx->engine, QStringLiteral("E"), Value::fromDouble(::exp(1.0)));
defineReadonlyProperty(ctx->engine, QStringLiteral("LN2"), Value::fromDouble(::log(2.0)));