aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4symbol_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4symbol_p.h')
-rw-r--r--src/qml/jsruntime/qv4symbol_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4symbol_p.h b/src/qml/jsruntime/qv4symbol_p.h
index 7673fab549..46fa2979f8 100644
--- a/src/qml/jsruntime/qv4symbol_p.h
+++ b/src/qml/jsruntime/qv4symbol_p.h
@@ -82,7 +82,7 @@ struct SymbolCtor : FunctionObject
{
V4_OBJECT2(SymbolCtor, FunctionObject)
- static ReturnedValue call(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
+ static ReturnedValue virtualCall(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
static ReturnedValue method_for(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
static ReturnedValue method_keyFor(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
};
@@ -117,7 +117,7 @@ struct SymbolObject : Object
V4_INTERNALCLASS(SymbolObject)
V4_PROTOTYPE(symbolPrototype)
- static bool put(Managed *, PropertyKey, const Value &, Value *) { return false; }
+ static bool virtualPut(Managed *, PropertyKey, const Value &, Value *) { return false; }
};
}