aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSona Kurazyan <sona.kurazyan@qt.io>2019-04-25 17:12:05 +0200
committerSona Kurazyan <sona.kurazyan@qt.io>2019-04-26 12:25:11 +0000
commite8b9f3c8a91a0071afd315c2455772652b976f48 (patch)
tree53320391dbf3ee3d46c7ebca3d0d044744b9d37b
parent4f4ea77b62adc7b8f24f682fabed560ba78541d9 (diff)
Fix the location of '&' in a method signature
Change-Id: Ibf19500b897c0d2eb3a9ab9420ee98b04074b20a Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
-rw-r--r--src/coap/qcoapclient.cpp2
-rw-r--r--src/coap/qcoapclient.h2
-rw-r--r--src/coap/qcoapprotocol.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/coap/qcoapclient.cpp b/src/coap/qcoapclient.cpp
index d56b072..dced30e 100644
--- a/src/coap/qcoapclient.cpp
+++ b/src/coap/qcoapclient.cpp
@@ -127,7 +127,7 @@ QCoapClientPrivate::~QCoapClientPrivate()
/*!
\fn void QCoapClient::responseToMulticastReceived(QCoapReply *reply,
- const QCoapMessage& message,
+ const QCoapMessage &message,
const QHostAddress &sender)
This signal is emitted when a unicast response to a multicast request
diff --git a/src/coap/qcoapclient.h b/src/coap/qcoapclient.h
index 8701e3c..4645c4c 100644
--- a/src/coap/qcoapclient.h
+++ b/src/coap/qcoapclient.h
@@ -90,7 +90,7 @@ public:
Q_SIGNALS:
void finished(QCoapReply *reply);
- void responseToMulticastReceived(QCoapReply *reply, const QCoapMessage& message,
+ void responseToMulticastReceived(QCoapReply *reply, const QCoapMessage &message,
const QHostAddress &sender);
void error(QCoapReply *reply, QtCoap::Error error);
diff --git a/src/coap/qcoapprotocol.h b/src/coap/qcoapprotocol.h
index e7763d9..0c91443 100644
--- a/src/coap/qcoapprotocol.h
+++ b/src/coap/qcoapprotocol.h
@@ -67,7 +67,7 @@ public:
Q_SIGNALS:
void finished(QCoapReply *reply);
- void responseToMulticastReceived(QCoapReply *reply, const QCoapMessage& message,
+ void responseToMulticastReceived(QCoapReply *reply, const QCoapMessage &message,
const QHostAddress &sender);
void error(QCoapReply *reply, QtCoap::Error error);