aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4objectproto.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-09-19 12:02:29 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-22 01:06:20 +0200
commit62cf5b1b6d7dab9517dc1df2b0d1790682ed58cf (patch)
tree71f35ad5463f3bbc73be0c44c137350f60c396c2 /src/qml/jsruntime/qv4objectproto.cpp
parentf64cd3f5d3fb4e466598a07aa4b9385ef93822d3 (diff)
remove debug output
Change-Id: I168f24ac12715fc65abe230b2bd0f86f777eea00 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4objectproto.cpp')
-rw-r--r--src/qml/jsruntime/qv4objectproto.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4objectproto.cpp b/src/qml/jsruntime/qv4objectproto.cpp
index cc3ff6d730..d0845735ce 100644
--- a/src/qml/jsruntime/qv4objectproto.cpp
+++ b/src/qml/jsruntime/qv4objectproto.cpp
@@ -556,7 +556,6 @@ void ObjectPrototype::toPropertyDescriptor(ExecutionContext *ctx, Value v, Prope
if (o->__hasProperty__(ctx->engine->id_get)) {
ScopedValue get(scope, o->get(ctx->engine->id_get));
FunctionObject *f = get->asFunctionObject();
- qDebug() << "get" << (void *)get.asReturnedValue() << f;
if (f) {
desc->setGetter(f);
} else if (get->isUndefined()) {