summaryrefslogtreecommitdiffstats
path: root/src/plugins/geoservices/osm/qgeocodingmanagerengineosm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/geoservices/osm/qgeocodingmanagerengineosm.cpp')
-rw-r--r--src/plugins/geoservices/osm/qgeocodingmanagerengineosm.cpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/plugins/geoservices/osm/qgeocodingmanagerengineosm.cpp b/src/plugins/geoservices/osm/qgeocodingmanagerengineosm.cpp
index 85554c76..d91815b2 100644
--- a/src/plugins/geoservices/osm/qgeocodingmanagerengineosm.cpp
+++ b/src/plugins/geoservices/osm/qgeocodingmanagerengineosm.cpp
@@ -138,9 +138,10 @@ QGeoCodeReply *QGeoCodingManagerEngineOsm::geocode(const QString &address, int l
replyPrivate->m_extraData["request_url"] = url;
}
- connect(geocodeReply, SIGNAL(finished()), this, SLOT(replyFinished()));
- connect(geocodeReply, SIGNAL(error(QGeoCodeReply::Error,QString)),
- this, SLOT(replyError(QGeoCodeReply::Error,QString)));
+ connect(geocodeReply, &QGeoCodeReplyOsm::finished,
+ this, &QGeoCodingManagerEngineOsm::replyFinished);
+ connect(geocodeReply, &QGeoCodeReplyOsm::errorOccurred,
+ this, &QGeoCodingManagerEngineOsm::replyError);
return geocodeReply;
}
@@ -174,9 +175,10 @@ QGeoCodeReply *QGeoCodingManagerEngineOsm::reverseGeocode(const QGeoCoordinate &
replyPrivate->m_extraData["request_url"] = url;
}
- connect(geocodeReply, SIGNAL(finished()), this, SLOT(replyFinished()));
- connect(geocodeReply, SIGNAL(error(QGeoCodeReply::Error,QString)),
- this, SLOT(replyError(QGeoCodeReply::Error,QString)));
+ connect(geocodeReply, &QGeoCodeReplyOsm::finished,
+ this, &QGeoCodingManagerEngineOsm::replyFinished);
+ connect(geocodeReply, &QGeoCodeReplyOsm::errorOccurred,
+ this, &QGeoCodingManagerEngineOsm::replyError);
return geocodeReply;
}
@@ -192,7 +194,7 @@ void QGeoCodingManagerEngineOsm::replyError(QGeoCodeReply::Error errorCode, cons
{
QGeoCodeReply *reply = qobject_cast<QGeoCodeReply *>(sender());
if (reply)
- emit error(reply, errorCode, errorString);
+ emit errorOccurred(reply, errorCode, errorString);
}
QT_END_NAMESPACE