1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-31 11:35:24 +01:00

remove obsolete connect

This commit is contained in:
John Maguire 2012-10-16 12:22:30 +02:00
parent 41d8c61e0d
commit f8b08616e8

View File

@ -166,7 +166,6 @@ AlbumCoverLoader::TryLoadResult AlbumCoverLoader::TryLoadImage(
if (filename.toLower().startsWith("http://")) {
QUrl url(filename);
QNetworkReply* reply = network_->get(QNetworkRequest(url));
connect(reply, SIGNAL(finished()), SLOT(RemoteFetchFinished()));
NewClosure(reply, SIGNAL(finished()), this,
SLOT(RemoteFetchFinished(QNetworkReply*)), reply);