mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-03-13 05:41:17 +00:00
Call TorrentModelItem::state() directly in getTorrentStatusReport
There is no point in wraping/unwraping QVariant.
This commit is contained in:
parent
80297697dd
commit
2d98b8f192
@ -504,7 +504,7 @@ TorrentStatusReport TorrentModel::getTorrentStatusReport() const
|
||||
QList<TorrentModelItem*>::const_iterator it = m_torrents.constBegin();
|
||||
QList<TorrentModelItem*>::const_iterator itend = m_torrents.constEnd();
|
||||
for ( ; it != itend; ++it) {
|
||||
switch((*it)->data(TorrentModelItem::TR_STATUS).toInt()) {
|
||||
switch((*it)->state()) {
|
||||
case TorrentModelItem::STATE_DOWNLOADING:
|
||||
++report.nb_active;
|
||||
++report.nb_downloading;
|
||||
|
@ -58,6 +58,7 @@ public:
|
||||
QVariant data(int column, int role = Qt::DisplayRole) const;
|
||||
bool setData(int column, const QVariant &value, int role = Qt::DisplayRole);
|
||||
inline QString hash() const { return m_hash; }
|
||||
State state() const;
|
||||
|
||||
signals:
|
||||
void labelChanged(QString previous, QString current);
|
||||
@ -65,7 +66,6 @@ signals:
|
||||
private:
|
||||
static QIcon getIconByState(State state);
|
||||
static QColor getColorByState(State state);
|
||||
State state() const;
|
||||
|
||||
private:
|
||||
QTorrentHandle m_torrent;
|
||||
|
Loading…
x
Reference in New Issue
Block a user