summaryrefslogtreecommitdiff
path: root/src/webchannel/qwebchannel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/webchannel/qwebchannel.cpp')
-rw-r--r--src/webchannel/qwebchannel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webchannel/qwebchannel.cpp b/src/webchannel/qwebchannel.cpp
index a080aae..5e8e320 100644
--- a/src/webchannel/qwebchannel.cpp
+++ b/src/webchannel/qwebchannel.cpp
@@ -136,12 +136,12 @@ void QWebChannel::disconnectFrom(QWebChannelTransportInterface *transport)
}
}
-void QWebChannel::respond(const QJsonValue& messageId, const QJsonValue& data) const
+void QWebChannel::respond(const QJsonValue &messageId, const QJsonValue &data) const
{
d->sendJSONMessage(messageId, data, true);
}
-void QWebChannel::sendMessage(const QJsonValue& id, const QJsonValue& data) const
+void QWebChannel::sendMessage(const QJsonValue &id, const QJsonValue &data) const
{
d->sendJSONMessage(id, data, false);
}