aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4value.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4value.cpp')
-rw-r--r--src/qml/jsruntime/qv4value.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/qml/jsruntime/qv4value.cpp b/src/qml/jsruntime/qv4value.cpp
index d0857556b6..384df32601 100644
--- a/src/qml/jsruntime/qv4value.cpp
+++ b/src/qml/jsruntime/qv4value.cpp
@@ -316,12 +316,6 @@ Object *Value::toObject(ExecutionContext *ctx) const
}
-Value Value::property(ExecutionContext *ctx, String *name) const
-{
- return isObject() ? objectValue()->get(name) : undefinedValue();
-}
-
-
PersistentValue::PersistentValue(const Value &val)
: d(new PersistentValuePrivate(val))
{