summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlbasicscript.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-07-01 13:48:41 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-07-02 00:54:54 (GMT)
commitecd07750a74111ed9ef65a7439ddccc065c5dadc (patch)
tree96422a2eca0a2ad2900027ee34df251a7a96890b /src/declarative/qml/qmlbasicscript.cpp
parent5118020e63f5e634a74082c417362d735a7a2303 (diff)
downloadQt-ecd07750a74111ed9ef65a7439ddccc065c5dadc.zip
Qt-ecd07750a74111ed9ef65a7439ddccc065c5dadc.tar.gz
Qt-ecd07750a74111ed9ef65a7439ddccc065c5dadc.tar.bz2
Add parameterized synthesized signals
Also changed syntax for emitting a signal to be consistent with normal QtScript.
Diffstat (limited to 'src/declarative/qml/qmlbasicscript.cpp')
-rw-r--r--src/declarative/qml/qmlbasicscript.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/declarative/qml/qmlbasicscript.cpp b/src/declarative/qml/qmlbasicscript.cpp
index 80ca5a9..8b0cb42 100644
--- a/src/declarative/qml/qmlbasicscript.cpp
+++ b/src/declarative/qml/qmlbasicscript.cpp
@@ -137,9 +137,6 @@ QDebug operator<<(QDebug lhs, const QmlBasicScriptNodeCache &rhs)
case QmlBasicScriptNodeCache::Attached:
lhs << "Attached" << rhs.object << rhs.attached;
break;
- case QmlBasicScriptNodeCache::Signal:
- lhs << "Signal" << rhs.object << rhs.core;
- break;
case QmlBasicScriptNodeCache::SignalProperty:
lhs << "SignalProperty" << rhs.object << rhs.core;
break;
@@ -276,10 +273,6 @@ QVariant QmlBasicScriptNodeCache::value(const char *) const
case Attached:
return qVariantFromValue(static_cast<QObject *>(attached));
break;
- case Signal:
- // XXX
- Q_ASSERT(!"Not implemented");
- break;
case SignalProperty:
break;
case Variant: