# HG changeset patch # User Chris Cannam # Date 1193913928 0 # Node ID 07aa524661428f68d7a21915b547c40cf15a7c60 # Parent 973a0272b7125d8762a3ce067e61c6acfc672fcb * FileSource -> default to showProgress = false diff -r 973a0272b712 -r 07aa52466142 layer/ImageLayer.cpp --- a/layer/ImageLayer.cpp Thu Oct 25 15:45:12 2007 +0000 +++ b/layer/ImageLayer.cpp Thu Nov 01 10:45:28 2007 +0000 @@ -879,7 +879,7 @@ return; } - FileSource *rf = new FileSource(img); + FileSource *rf = new FileSource(img, true); if (rf->isOK()) { std::cerr << "ok, adding it (local filename = " << rf->getLocalFilename().toStdString() << ")" << std::endl; m_remoteFiles[img] = rf; diff -r 973a0272b712 -r 07aa52466142 widgets/ImageDialog.cpp --- a/widgets/ImageDialog.cpp Thu Oct 25 15:45:12 2007 +0000 +++ b/widgets/ImageDialog.cpp Thu Nov 01 10:45:28 2007 +0000 @@ -186,7 +186,7 @@ tr("The URL scheme \"%1\" is not supported") .arg(url.scheme())); } else { - m_remoteFile = new FileSource(url); + m_remoteFile = new FileSource(url, true); m_remoteFile->waitForData(); if (!m_remoteFile->isOK()) { QMessageBox::critical(this, tr("File download failed"),