mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-03 03:20:22 +03:00
Simplify TorrentContentModel code
This commit is contained in:
parent
5fe5c4d147
commit
8ad821c468
1 changed files with 2 additions and 5 deletions
|
@ -268,14 +268,11 @@ void TorrentContentModel::setupModelData(const libtorrent::torrent_info& t)
|
|||
qDebug("Torrent contains %d files", t.num_files());
|
||||
m_filesIndex.reserve(t.num_files());
|
||||
|
||||
TorrentContentModelFolder* parent = m_rootItem;
|
||||
TorrentContentModelFolder* root_folder = parent;
|
||||
TorrentContentModelFolder* current_parent;
|
||||
|
||||
// Iterate over files
|
||||
for (int i=0; i<t.num_files(); ++i) {
|
||||
for (int i = 0; i < t.num_files(); ++i) {
|
||||
const libtorrent::file_entry& fentry = t.file_at(i);
|
||||
current_parent = root_folder;
|
||||
current_parent = m_rootItem;
|
||||
#if LIBTORRENT_VERSION_MINOR >= 16
|
||||
QString path = misc::toQStringU(fentry.path);
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue