diff options
Diffstat (limited to 'src/remoteobjects/qremoteobjectsourceio.cpp')
-rw-r--r-- | src/remoteobjects/qremoteobjectsourceio.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/remoteobjects/qremoteobjectsourceio.cpp b/src/remoteobjects/qremoteobjectsourceio.cpp index 026978d..65a554e 100644 --- a/src/remoteobjects/qremoteobjectsourceio.cpp +++ b/src/remoteobjects/qremoteobjectsourceio.cpp @@ -195,8 +195,8 @@ void QRemoteObjectSourceIo::onServerRead(QObject *conn) } case InvokePacket: { - int call, index, serialId; - deserializeInvokePacket(connection->stream(), call, index, m_rxArgs, serialId); + int call, index, serialId, propertyId; + deserializeInvokePacket(connection->stream(), call, index, m_rxArgs, serialId, propertyId); if (m_rxName == QStringLiteral("Registry") && !m_registryMapping.contains(connection)) { const QRemoteObjectSourceLocation loc = m_rxArgs.first().value<QRemoteObjectSourceLocation>(); m_registryMapping[connection] = loc.second.hostUrl; |