forked from qt-creator/qt-creator
QmlLivePreview: removing and inserting animations and transitions
Change-Id: Ic776f63f5d7925ac7dfd99be53c10b9af4cb9545 Reviewed-on: http://codereview.qt.nokia.com/75 Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
This commit is contained in:
committed by
Kai Koehne
parent
779fafcbfe
commit
3cf5379380
@@ -414,7 +414,7 @@ void QmlJSObserverClient::showAppOnTop(bool showOnTop)
|
||||
}
|
||||
|
||||
void QmlJSObserverClient::createQmlObject(const QString &qmlText, int parentDebugId,
|
||||
const QStringList &imports, const QString &filename)
|
||||
const QStringList &imports, const QString &filename, int order)
|
||||
{
|
||||
if (!m_connection || !m_connection->isConnected())
|
||||
return;
|
||||
@@ -427,7 +427,8 @@ void QmlJSObserverClient::createQmlObject(const QString &qmlText, int parentDebu
|
||||
<< qmlText
|
||||
<< parentDebugId
|
||||
<< imports
|
||||
<< filename;
|
||||
<< filename
|
||||
<< order;
|
||||
|
||||
log(LogSend, cmd, QString("%1 %2 [%3] %4").arg(qmlText, QString::number(parentDebugId),
|
||||
imports.join(","), filename));
|
||||
|
||||
Reference in New Issue
Block a user