summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlenginedebug.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-09-22 12:18:56 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-09-22 12:18:56 (GMT)
commit5085d5027f168db01e60e2161d44d9445f9c7beb (patch)
tree8c356970804cc36090c5201c3a521caddad97f94 /src/declarative/qml/qmlenginedebug.cpp
parent8d5a395e176239b7e3ee8822cb251b2e631c21de (diff)
downloadQt-5085d5027f168db01e60e2161d44d9445f9c7beb.zip
Qt-5085d5027f168db01e60e2161d44d9445f9c7beb.tar.gz
Qt-5085d5027f168db01e60e2161d44d9445f9c7beb.tar.bz2
Add plumbing for more advanced signal property control
Diffstat (limited to 'src/declarative/qml/qmlenginedebug.cpp')
-rw-r--r--src/declarative/qml/qmlenginedebug.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/declarative/qml/qmlenginedebug.cpp b/src/declarative/qml/qmlenginedebug.cpp
index 7f9e530..a53ab2a 100644
--- a/src/declarative/qml/qmlenginedebug.cpp
+++ b/src/declarative/qml/qmlenginedebug.cpp
@@ -104,11 +104,7 @@ QmlEngineDebugServer::propertyData(QObject *obj, int propIdx)
if (prop.type() < QVariant::UserType) {
rv.type = QmlObjectProperty::Basic;
- if (qobject_cast<QmlBoundSignalParameters*>(obj) && prop.name() != QByteArray("objectName"))
- // these "properties" only have meaning during signal emission
- rv.value = tr("(signal parameter)");
- else
- rv.value = prop.read(obj);
+ rv.value = prop.read(obj);
} else if (QmlMetaType::isObject(prop.userType())) {
rv.type = QmlObjectProperty::Object;
} else if (QmlMetaType::isList(prop.userType()) ||