Fix trackersadditiondlg position

This commit is contained in:
Chocobo1
2016-02-09 15:27:08 +08:00
parent bd2f69a9d6
commit f36e891010
4 changed files with 7 additions and 30 deletions

View File

@@ -347,7 +347,7 @@ void TrackerList::askForTrackers() {
if (!torrent) return;
QList<BitTorrent::TrackerEntry> trackers;
foreach (const QString &tracker, TrackersAdditionDlg::askForTrackers(torrent))
foreach (const QString &tracker, TrackersAdditionDlg::askForTrackers(this, torrent))
trackers << tracker;
torrent->addTrackers(trackers);
}