From 1da76e21a0a39295c4ff41f8f268dc0eb854a482 Mon Sep 17 00:00:00 2001 From: Lars Schmertmann Date: Sat, 27 Jun 2020 12:54:03 +0200 Subject: Add ; to Q_UNUSED This is required to remove the ; from the macro with Qt 6. Task-number: QTBUG-82978 Change-Id: I1aaf36e893b8f947abd0770acd9d3007cffdcb10 Reviewed-by: Alex Blasche --- src/plugins/geoservices/esri/placesearchreply_esri.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/geoservices/esri/placesearchreply_esri.cpp') diff --git a/src/plugins/geoservices/esri/placesearchreply_esri.cpp b/src/plugins/geoservices/esri/placesearchreply_esri.cpp index 72c080f5..a35c9964 100644 --- a/src/plugins/geoservices/esri/placesearchreply_esri.cpp +++ b/src/plugins/geoservices/esri/placesearchreply_esri.cpp @@ -143,7 +143,7 @@ void PlaceSearchReplyEsri::replyFinished() void PlaceSearchReplyEsri::networkError(QNetworkReply::NetworkError error) { - Q_UNUSED(error) + Q_UNUSED(error); QNetworkReply *reply = static_cast(sender()); reply->deleteLater(); setError(QPlaceReply::CommunicationError, reply->errorString()); -- cgit v1.2.3