mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 15:27:54 +00:00
Remove superfluous semicolon(;).
This commit is contained in:
parent
c2f2d0a363
commit
ce4ef37820
@ -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 New Issue
Block a user