aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmldesigner/testconnectionmanager.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2020-10-21 09:31:01 +0200
committerEike Ziller <eike.ziller@qt.io>2020-10-21 09:31:01 +0200
commitdbb62016052ad70e8e3dffb60a419504c9eb6dac (patch)
tree7926ab117c9932be15b8886ba5230048da97bc07 /tests/auto/qml/qmldesigner/testconnectionmanager.cpp
parent526579b09d1be00ef2f0e371e0c57064777e6538 (diff)
parentcc6f35016ab6f7a1ce82a39582141ab8a35b7bce (diff)
Merge remote-tracking branch 'origin/4.14' into master
Diffstat (limited to 'tests/auto/qml/qmldesigner/testconnectionmanager.cpp')
-rw-r--r--tests/auto/qml/qmldesigner/testconnectionmanager.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/auto/qml/qmldesigner/testconnectionmanager.cpp b/tests/auto/qml/qmldesigner/testconnectionmanager.cpp
index f637fb1f1a..03a6d43346 100644
--- a/tests/auto/qml/qmldesigner/testconnectionmanager.cpp
+++ b/tests/auto/qml/qmldesigner/testconnectionmanager.cpp
@@ -32,26 +32,26 @@ namespace QmlDesigner {
TestConnectionManager::TestConnectionManager()
{
- m_connections.emplace_back("Editor", "editormode");
+ connections().emplace_back("Editor", "editormode");
}
void TestConnectionManager::writeCommand(const QVariant &command)
{
- TestConnectionManager::writeCommand(command);
+ ConnectionManager::writeCommand(command);
- m_writeCommandCounter++;
+ writeCommandCounter()++;
static int synchronizeId = 0;
synchronizeId++;
SynchronizeCommand synchronizeCommand(synchronizeId);
- QLocalSocket *socket = m_connections.front().socket.get();
+ QLocalSocket *socket = connections().front().socket.get();
- writeCommandToIODevice(QVariant::fromValue(synchronizeCommand), socket, m_writeCommandCounter);
- m_writeCommandCounter++;
+ writeCommandToIODevice(QVariant::fromValue(synchronizeCommand), socket, writeCommandCounter());
+ writeCommandCounter()++;
while (socket->waitForReadyRead(100)) {
- readDataStream(m_connections.front());
+ readDataStream(connections().front());
if (m_synchronizeId == synchronizeId)
return;
}