- Added search plugin download error handling (Fallback on secondary server and then warn the user if both failed)

This commit is contained in:
Christophe Dumez 2007-07-20 20:30:33 +00:00
parent 1fb848e9ed
commit f4250d812f
3 changed files with 20 additions and 4 deletions

View file

@ -397,7 +397,7 @@ void GUI::on_actionSet_upload_limit_triggered(){
void GUI::handleDownloadFromUrlFailure(const QString& url, const QString& reason){
// Display a message box
QMessageBox::critical(0, tr("Url download error"), tr("Couldn't download url: %1, reason: %2.").arg(url).arg(reason));
QMessageBox::critical(0, tr("Url download error"), tr("Couldn't download file at url: %1, reason: %2.").arg(url).arg(reason));
}
void GUI::on_actionSet_global_upload_limit_triggered(){