Generalized ExpressionUnderCursor and got rid of duplicate code.

Done-with: Roberto Raggi
This commit is contained in:
Erik Verbruggen
2010-01-27 12:40:02 +01:00
parent bbb63c44d4
commit 8ecc80ec4c
6 changed files with 135 additions and 361 deletions

View File

@@ -166,7 +166,9 @@ public:
QmlObjectValue::QmlObjectValue(const QMetaObject *metaObject, const QString &qmlTypeName, int majorVersion, int minorVersion, Engine *engine)
: ObjectValue(engine), _metaObject(metaObject), _qmlTypeName(qmlTypeName), _majorVersion(majorVersion), _minorVersion(minorVersion)
{}
{
setClassName(qmlTypeName); // ### TODO: we probably need to do more than just this...
}
QmlObjectValue::~QmlObjectValue() {}