mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-25 10:46:15 +03:00
Remove superfluous semicolon(;).
This commit is contained in:
parent
c2f2d0a363
commit
ce4ef37820
2 changed files with 2 additions and 2 deletions
|
@ -125,7 +125,7 @@ QBtSession::QBtSession()
|
|||
BigRatioTimer = new QTimer(this);
|
||||
BigRatioTimer->setInterval(10000);
|
||||
connect(BigRatioTimer, SIGNAL(timeout()), SLOT(processBigRatios()));
|
||||
Preferences* const pref = Preferences::instance();;
|
||||
Preferences* const pref = Preferences::instance();
|
||||
// Creating Bittorrent session
|
||||
QList<int> version;
|
||||
version << VERSION_MAJOR;
|
||||
|
|
|
@ -209,7 +209,7 @@ QVariant TorrentModelItem::data(int column, int role) const
|
|||
case TR_NAME:
|
||||
return m_name.isEmpty() ? m_torrent.name() : m_name;
|
||||
case TR_PRIORITY: {
|
||||
int pos = m_torrent.queue_position(m_lastStatus);;
|
||||
int pos = m_torrent.queue_position(m_lastStatus);
|
||||
if (pos > -1)
|
||||
return pos - HiddenData::getSize();
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue