Pass correct type to FetchContentUrlFinished.

This commit is contained in:
Jim Broadus 2020-02-14 00:44:16 -08:00 committed by John Maguire
parent b86b8a45cc
commit 58e59adcfc
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ void DropboxService::RequestFileListFinished(QNetworkReply* reply) {
QNetworkReply* reply = FetchContentUrl(url);
NewClosure(reply, SIGNAL(finished()), this,
SLOT(FetchContentUrlFinished(QNetworkReply*, QVariantMap)),
reply, item);
reply, item.toVariantMap());
}
}