Convert to range-based for loop

This commit is contained in:
thalieht 2019-02-13 16:45:54 +02:00
commit 947c7e1d64
2 changed files with 4 additions and 9 deletions

View file

@ -466,8 +466,7 @@ void TrackerListWidget::editSelectedTracker()
QList<BitTorrent::TrackerEntry> trackers = torrent->trackers();
bool match = false;
for (int i = 0; i < trackers.size(); ++i) {
BitTorrent::TrackerEntry &entry = trackers[i];
for (auto &entry : trackers) {
if (newTrackerURL == QUrl(entry.url())) {
QMessageBox::warning(this, tr("Tracker editing failed"), tr("The tracker URL already exists."));
return;