Skip to content

Commit

Permalink
fix crash in network access manager (fixes #9626)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 24, 2014
1 parent ab65fa7 commit 4b82036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsnetworkaccessmanager.cpp
Expand Up @@ -179,7 +179,7 @@ void QgsNetworkAccessManager::connectionProgress()

void QgsNetworkAccessManager::connectionDestroyed( QObject* reply )
{
mActiveRequests.remove( qobject_cast<QNetworkReply*>( reply ) );
mActiveRequests.remove( static_cast<QNetworkReply*>( reply ) );
}

void QgsNetworkAccessManager::abortRequest()
Expand Down

0 comments on commit 4b82036

Please sign in to comment.