summaryrefslogtreecommitdiff
path: root/src/plugins/geoservices/esri/georoutereply_esri.cpp
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2020-03-23 10:03:47 +0100
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2020-03-23 13:04:51 +0100
commitae9a8826d73fa689e81c43038bb13226c9cb9ac7 (patch)
tree28649fd4a54b3e773db999b89a4a1ce61754887c /src/plugins/geoservices/esri/georoutereply_esri.cpp
parentd97b13fc2ccd38dd6d38190722d2207bb26315b5 (diff)
downloadqtlocation-ae9a8826d73fa689e81c43038bb13226c9cb9ac7.tar.gz
QtLocation: get rid of now unneeded qOverloads
In a preparation for final cleanup in dev/Qt6. This amends the recent change in QtNetwork where we deprecated ambiguous signal overload. Also, fix old SIGNAL to use the proper name. Task-number: QTBUG-82605 Change-Id: Ifc92ce4569ba15ac5429fe379f134a6dbe3a5f73 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'src/plugins/geoservices/esri/georoutereply_esri.cpp')
-rw-r--r--src/plugins/geoservices/esri/georoutereply_esri.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/geoservices/esri/georoutereply_esri.cpp b/src/plugins/geoservices/esri/georoutereply_esri.cpp
index a47db6fb..8cadfb29 100644
--- a/src/plugins/geoservices/esri/georoutereply_esri.cpp
+++ b/src/plugins/geoservices/esri/georoutereply_esri.cpp
@@ -55,7 +55,7 @@ GeoRouteReplyEsri::GeoRouteReplyEsri(QNetworkReply *reply, const QGeoRouteReques
return;
}
connect(reply, SIGNAL(finished()), this, SLOT(networkReplyFinished()));
- connect(reply, SIGNAL(error(QNetworkReply::NetworkError)),
+ connect(reply, SIGNAL(errorOccurred(QNetworkReply::NetworkError)),
this, SLOT(networkReplyError(QNetworkReply::NetworkError)));
connect(this, &QGeoRouteReply::aborted, reply, &QNetworkReply::abort);
connect(this, &QObject::destroyed, reply, &QObject::deleteLater);