forked from qt-creator/qt-creator
Compile with qt-qml.
This commit is contained in:
@@ -248,7 +248,7 @@ QList<QDeclarativeDebugObjectReference> ClientProxy::objectReferences(const QUrl
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
QDeclarativeDebugExpressionQuery *ClientProxy::setBindingForObject(int objectDebugId,
|
bool ClientProxy::setBindingForObject(int objectDebugId,
|
||||||
const QString &propertyName,
|
const QString &propertyName,
|
||||||
const QVariant &value,
|
const QVariant &value,
|
||||||
bool isLiteralValue)
|
bool isLiteralValue)
|
||||||
@@ -259,7 +259,7 @@ QDeclarativeDebugExpressionQuery *ClientProxy::setBindingForObject(int objectDeb
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
qDebug() << "executeBinding():" << objectDebugId << propertyName << value << "isLiteral:" << isLiteralValue;
|
qDebug() << "executeBinding():" << objectDebugId << propertyName << value << "isLiteral:" << isLiteralValue;
|
||||||
return m_client->setBindingForObject(objectDebugId, propertyName, value.toString(), isLiteralValue, 0);
|
return m_client->setBindingForObject(objectDebugId, propertyName, value.toString(), isLiteralValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ClientProxy::queryEngineContext(int id)
|
void ClientProxy::queryEngineContext(int id)
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ class ClientProxy : public QObject
|
|||||||
public:
|
public:
|
||||||
static ClientProxy *instance();
|
static ClientProxy *instance();
|
||||||
|
|
||||||
QDeclarativeDebugExpressionQuery *setBindingForObject(int objectDebugId,
|
bool setBindingForObject(int objectDebugId,
|
||||||
const QString &propertyName,
|
const QString &propertyName,
|
||||||
const QVariant &value,
|
const QVariant &value,
|
||||||
bool isLiteralValue);
|
bool isLiteralValue);
|
||||||
|
|||||||
Reference in New Issue
Block a user