mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 20:44:15 +00:00
Fix method invocation on Qt < 5.10
Fixup 0c3fe54b0ba25c8f24fe50a41cf7ab797d53932f
This commit is contained in:
parent
0c3fe54b0b
commit
7e4b428a3e
@ -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