Browse Source

Simplify TorrentContentModel code

adaptive-webui-19844
Christophe Dumez 12 years ago
parent
commit
8ad821c468
  1. 5
      src/torrentcontentmodel.cpp

5
src/torrentcontentmodel.cpp

@ -268,14 +268,11 @@ void TorrentContentModel::setupModelData(const libtorrent::torrent_info& t) @@ -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) {
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…
Cancel
Save