summaryrefslogtreecommitdiff
path: root/src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp')
-rw-r--r--src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp b/src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp
index 7f080724..cbfa40a4 100644
--- a/src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp
+++ b/src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp
@@ -41,7 +41,6 @@ QGeoMapReplyMapbox::QGeoMapReplyMapbox(QNetworkReply *reply, const QGeoTileSpec
connect(m_reply, SIGNAL(finished()), this, SLOT(networkReplyFinished()));
connect(m_reply, SIGNAL(error(QNetworkReply::NetworkError)),
this, SLOT(networkReplyError(QNetworkReply::NetworkError)));
- connect(m_reply, SIGNAL(destroyed()), this, SLOT(replyDestroyed()));
}
QGeoMapReplyMapbox::~QGeoMapReplyMapbox()
@@ -65,11 +64,6 @@ QNetworkReply *QGeoMapReplyMapbox::networkReply() const
return m_reply;
}
-void QGeoMapReplyMapbox::replyDestroyed()
-{
- m_reply = 0;
-}
-
void QGeoMapReplyMapbox::networkReplyFinished()
{
if (!m_reply)