From fa45ba102cb89da7dad8618e72ba89af920a31b7 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Tue, 27 Dec 2016 22:14:49 +0800 Subject: [PATCH] Refactor --- src/base/bittorrent/torrenthandle.cpp | 4 ++-- src/gui/transferlistwidget.cpp | 21 ++++++++++----------- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/src/base/bittorrent/torrenthandle.cpp b/src/base/bittorrent/torrenthandle.cpp index b03bf90af..8a0de7e12 100644 --- a/src/base/bittorrent/torrenthandle.cpp +++ b/src/base/bittorrent/torrenthandle.cpp @@ -1280,7 +1280,7 @@ void TorrentHandle::moveStorage(const QString &newPath) m_queuedPath = newPath; } else { - QString oldPath = nativeActualSavePath(); + const QString oldPath = nativeActualSavePath(); if (QDir(oldPath) == QDir(newPath)) return; qDebug("move storage: %s to %s", qPrintable(oldPath), qPrintable(newPath)); @@ -1347,7 +1347,7 @@ void TorrentHandle::handleStorageMovedAlert(libtorrent::storage_moved_alert *p) return; } - QString newPath = Utils::String::fromStdString(p->path); + const QString newPath = Utils::String::fromStdString(p->path); if (newPath != m_newPath) { qWarning() << Q_FUNC_INFO << ": New path doesn't match a path in a queue."; return; diff --git a/src/gui/transferlistwidget.cpp b/src/gui/transferlistwidget.cpp index ae193f55c..aaf1ee671 100644 --- a/src/gui/transferlistwidget.cpp +++ b/src/gui/transferlistwidget.cpp @@ -249,18 +249,17 @@ void TransferListWidget::setSelectedTorrentsLocation() const QList torrents = getSelectedTorrents(); if (torrents.isEmpty()) return; - QString dir; - const QDir saveDir(torrents[0]->savePath()); - qDebug("Old save path is %s", qPrintable(saveDir.absolutePath())); - dir = QFileDialog::getExistingDirectory(this, tr("Choose save path"), saveDir.absolutePath(), + const QString oldLocation = torrents[0]->savePath(); + qDebug("Old location is %s", qPrintable(oldLocation)); + + const QString newLocation = QFileDialog::getExistingDirectory(this, tr("Choose save path"), oldLocation, QFileDialog::DontConfirmOverwrite | QFileDialog::ShowDirsOnly | QFileDialog::HideNameFilterDetails); - if (!dir.isNull()) { - qDebug("New path is %s", qPrintable(dir)); - foreach (BitTorrent::TorrentHandle *const torrent, torrents) { - // Actually move storage - torrent->move(Utils::Fs::expandPathAbs(dir)); - } - } + if (!QDir(newLocation).exists()) return; + qDebug("New location is %s", qPrintable(newLocation)); + + // Actually move storage + foreach (BitTorrent::TorrentHandle *const torrent, torrents) + torrent->move(Utils::Fs::expandPathAbs(newLocation)); } void TransferListWidget::pauseAllTorrents()