mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-30 19:40:18 -07:00
Use the proper Qt type
This commit is contained in:
parent
88295f8075
commit
d013e0922d
1 changed files with 1 additions and 2 deletions
|
@ -30,7 +30,6 @@
|
|||
|
||||
#include <fstream>
|
||||
|
||||
#include <boost/bind.hpp>
|
||||
#include <libtorrent/bencode.hpp>
|
||||
#include <libtorrent/create_torrent.hpp>
|
||||
#include <libtorrent/storage.hpp>
|
||||
|
@ -108,7 +107,7 @@ void TorrentCreatorThread::run()
|
|||
std::sort(dirs.begin(), dirs.end(), Utils::String::naturalLessThan<Qt::CaseInsensitive>);
|
||||
|
||||
QStringList fileNames;
|
||||
QHash<QString, boost::int64_t> fileSizeMap;
|
||||
QHash<QString, qint64> fileSizeMap;
|
||||
|
||||
for (const auto &dir : asConst(dirs)) {
|
||||
QStringList tmpNames; // natural sort files within each dir
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue