From ca9f40eb7fe382c6a5ea170cda362d1a71a71ea9 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 9 Oct 2010 15:40:24 +0000 Subject: [PATCH] COSMETIC: Replaced message box by on-screen notification for download errors --- Changelog | 1 + src/GUI.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 557b5fae9..2ab9161ed 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,7 @@ * Unreleased - Christophe Dumez - v2.5.0 - FEATURE: Added feature to shutdown qbittorrent on torrents completion - FEATURE: Added a transfer list column to display the current tracker + - COSMETIC: Replaced message box by on-screen notification for download errors * Tue Aug 24 2010 - Christophe Dumez - v2.4.0 - FEATURE: Added actions to "Move to top/bottom" of priority queue diff --git a/src/GUI.cpp b/src/GUI.cpp index 3b4de87d8..2a2c401dc 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -542,7 +542,7 @@ void GUI::askRecursiveTorrentDownloadConfirmation(QTorrentHandle &h) { void GUI::handleDownloadFromUrlFailure(QString url, QString reason) const{ // Display a message box - QMessageBox::critical(0, tr("Url download error"), tr("Couldn't download file at url: %1, reason: %2.").arg(url).arg(reason)); + showNotificationBaloon(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() {