Skip to content
Snippets Groups Projects
Commit 1b5dd002 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Compile with qt-qml.

parent 1d668299
No related branches found
No related tags found
No related merge requests found
......@@ -248,10 +248,10 @@ QList<QDeclarativeDebugObjectReference> ClientProxy::objectReferences(const QUrl
return result;
}
QDeclarativeDebugExpressionQuery *ClientProxy::setBindingForObject(int objectDebugId,
const QString &propertyName,
const QVariant &value,
bool isLiteralValue)
bool ClientProxy::setBindingForObject(int objectDebugId,
const QString &propertyName,
const QVariant &value,
bool isLiteralValue)
{
qDebug() << Q_FUNC_INFO;
......@@ -259,7 +259,7 @@ QDeclarativeDebugExpressionQuery *ClientProxy::setBindingForObject(int objectDeb
return 0;
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)
......
......@@ -55,10 +55,10 @@ class ClientProxy : public QObject
public:
static ClientProxy *instance();
QDeclarativeDebugExpressionQuery *setBindingForObject(int objectDebugId,
const QString &propertyName,
const QVariant &value,
bool isLiteralValue);
bool setBindingForObject(int objectDebugId,
const QString &propertyName,
const QVariant &value,
bool isLiteralValue);
// returns the object references for the given url.
QList<QDeclarativeDebugObjectReference> objectReferences(const QUrl &url = QUrl()) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment