mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 13:04:23 +00:00
Merge pull request #13910 from FranciscoPombal/hotfix_13894
Fix method invocation on Qt < 5.10
This commit is contained in:
commit
d899923876
@ -2278,7 +2278,7 @@ void Session::findIncompleteFiles(const TorrentInfo &torrentInfo, const QString
|
|||||||
});
|
});
|
||||||
#else
|
#else
|
||||||
QMetaObject::invokeMethod(m_fileSearcher, "search"
|
QMetaObject::invokeMethod(m_fileSearcher, "search"
|
||||||
, Q_ARG(InfoHash, searchId), Q_ARG(QStringList, originalFileNames)
|
, Q_ARG(BitTorrent::InfoHash, searchId), Q_ARG(QStringList, originalFileNames)
|
||||||
, Q_ARG(QString, completeSavePath), Q_ARG(QString, incompleteSavePath));
|
, Q_ARG(QString, completeSavePath), Q_ARG(QString, incompleteSavePath));
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user