X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Futils%2Ffreesound.cpp;h=57a1c99dd86a6f914aa5098c6227880cd284ba83;hb=8fc16957ff5417b21e68ca5d84de89bec38c5a1c;hp=7cb9831e73f88851580867d1d046a24dd074ddbc;hpb=a970eea1944bf7d420fecabe5b82e4f72519a930;p=kdenlive diff --git a/src/utils/freesound.cpp b/src/utils/freesound.cpp index 7cb9831e..57a1c99d 100644 --- a/src/utils/freesound.cpp +++ b/src/utils/freesound.cpp @@ -59,7 +59,7 @@ void FreeSound::slotStartSearch(const QString searchText, int page) uri.append("&api_key=a1772c8236e945a4bee30a64058dabf8"); KJob* resolveJob = KIO::storedGet( KUrl(uri), KIO::NoReload, KIO::HideProgressInfo ); - connect( resolveJob, SIGNAL( result( KJob* ) ), this, SLOT( slotShowResults( KJob* ) ) ); + connect( resolveJob, SIGNAL(result(KJob*)), this, SLOT(slotShowResults(KJob*)) ); } @@ -142,7 +142,7 @@ OnlineItemInfo FreeSound::displayItemDetails(QListWidgetItem *item) QString extraInfoUrl = item->data(infoData).toString(); if (!extraInfoUrl.isEmpty()) { KJob* resolveJob = KIO::storedGet( KUrl(extraInfoUrl), KIO::NoReload, KIO::HideProgressInfo ); - connect( resolveJob, SIGNAL( result( KJob* ) ), this, SLOT( slotParseResults( KJob* ) ) ); + connect( resolveJob, SIGNAL(result(KJob*)), this, SLOT(slotParseResults(KJob*)) ); } emit gotThumb(item->data(imageRole).toString()); return info;