mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-18 18:35:14 +08:00
TorrentContentModel code cleanup
This commit is contained in:
parent
00945e5749
commit
3f755de80b
@ -296,7 +296,7 @@ void TorrentContentModel::setupModelData(const libtorrent::torrent_info& t)
|
||||
current_parent = new_parent;
|
||||
}
|
||||
// Actually create the file
|
||||
m_filesIndex.push_back(new TorrentContentModelFile(t, fentry, current_parent, i));
|
||||
m_filesIndex.push_back(new TorrentContentModelFile(fentry, current_parent, i));
|
||||
}
|
||||
emit layoutChanged();
|
||||
}
|
||||
|
@ -33,8 +33,7 @@
|
||||
#include "fs_utils.h"
|
||||
#include "misc.h"
|
||||
|
||||
TorrentContentModelFile::TorrentContentModelFile(const libtorrent::torrent_info& t,
|
||||
const libtorrent::file_entry& f,
|
||||
TorrentContentModelFile::TorrentContentModelFile(const libtorrent::file_entry& f,
|
||||
TorrentContentModelFolder* parent,
|
||||
int file_index)
|
||||
: TorrentContentModelItem(parent)
|
||||
@ -43,7 +42,7 @@ TorrentContentModelFile::TorrentContentModelFile(const libtorrent::torrent_info&
|
||||
Q_ASSERT(parent);
|
||||
|
||||
#if LIBTORRENT_VERSION_MINOR >= 16
|
||||
m_name = fsutils::fileName(misc::toQStringU(t.files().file_path(f)));
|
||||
m_name = fsutils::fileName(misc::toQStringU(f.path.c_str()));
|
||||
#else
|
||||
m_name = misc::toQStringU(f.path.filename());
|
||||
#endif
|
||||
|
@ -36,8 +36,7 @@
|
||||
class TorrentContentModelFile : public TorrentContentModelItem
|
||||
{
|
||||
public:
|
||||
TorrentContentModelFile(const libtorrent::torrent_info& t,
|
||||
const libtorrent::file_entry& f,
|
||||
TorrentContentModelFile(const libtorrent::file_entry& f,
|
||||
TorrentContentModelFolder* parent,
|
||||
int file_index);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user