From kde-commits Thu Jun 16 00:58:49 2011 From: Raphael Kubo da Costa Date: Thu, 16 Jun 2011 00:58:49 +0000 To: kde-commits Subject: KDE/kdemultimedia/juk Message-Id: <20110616005849.B845EAC7E2 () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=130818620503717 SVN commit 1236944 by rkcosta: Do not show progress information when fetching covers from the internet. The transfers are usually quite fast, and getting lots of "Download of http://whatever.com/blah has finished" KIO messages is not very informative (JuK produces an "Album cover has been fetched" message of its own anyway). CCMAIL: mpyne@kde.org CCMAIL: gekylafas@gmail.com M +1 -1 webimagefetcher.cpp --- trunk/KDE/kdemultimedia/juk/webimagefetcher.cpp #1236943:1236944 @@ -105,7 +105,7 @@ kDebug() << "Using request " << url.encodedPathAndQuery(); - d->connection = KIO::storedGet(url, KIO::Reload /* reload always */); + d->connection = KIO::storedGet(url, KIO::Reload /* reload always */, KIO::HideProgressInfo); connect(d->connection, SIGNAL(result(KJob *)), SLOT(slotWebRequestFinished(KJob *))); // Wait for the results...