forked from qt-creator/qt-creator
Qml JS Debugger: Change context path from Creator's crumble path
This commit is contained in:
@@ -462,12 +462,18 @@ void ClientProxy::createQmlObject(const QString &qmlText, int parentDebugId,
|
||||
m_designClient->createQmlObject(qmlText, parentDebugId, imports, filename);
|
||||
}
|
||||
|
||||
void QmlJSInspector::Internal::ClientProxy::destroyQmlObject(int debugId)
|
||||
void ClientProxy::destroyQmlObject(int debugId)
|
||||
{
|
||||
if (isDesignClientConnected())
|
||||
m_designClient->destroyQmlObject(debugId);
|
||||
}
|
||||
|
||||
void ClientProxy::setContextPathIndex(int contextIndex)
|
||||
{
|
||||
if (isDesignClientConnected())
|
||||
m_designClient->setContextPathIndex(contextIndex);
|
||||
}
|
||||
|
||||
|
||||
bool ClientProxy::isDesignClientConnected() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user