mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-03-07 19:47:04 +08:00
Fix coding style
This commit is contained in:
parent
8f2cdcef0e
commit
4381739b6d
@ -112,23 +112,21 @@ QString TorrentContentModelItem::displayData(const int column) const
|
|||||||
case COL_NAME:
|
case COL_NAME:
|
||||||
return m_name;
|
return m_name;
|
||||||
case COL_PRIO:
|
case COL_PRIO:
|
||||||
{
|
switch (m_priority)
|
||||||
switch (m_priority)
|
{
|
||||||
{
|
case BitTorrent::DownloadPriority::Mixed:
|
||||||
case BitTorrent::DownloadPriority::Mixed:
|
return tr("Mixed", "Mixed (priorities");
|
||||||
return tr("Mixed", "Mixed (priorities");
|
case BitTorrent::DownloadPriority::Ignored:
|
||||||
case BitTorrent::DownloadPriority::Ignored:
|
return tr("Not downloaded");
|
||||||
return tr("Not downloaded");
|
case BitTorrent::DownloadPriority::High:
|
||||||
case BitTorrent::DownloadPriority::High:
|
return tr("High", "High (priority)");
|
||||||
return tr("High", "High (priority)");
|
case BitTorrent::DownloadPriority::Maximum:
|
||||||
case BitTorrent::DownloadPriority::Maximum:
|
return tr("Maximum", "Maximum (priority)");
|
||||||
return tr("Maximum", "Maximum (priority)");
|
default:
|
||||||
default:
|
return tr("Normal", "Normal (priority)");
|
||||||
return tr("Normal", "Normal (priority)");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
case COL_PROGRESS:
|
case COL_PROGRESS:
|
||||||
{
|
{
|
||||||
const qreal progress = m_progress * 100;
|
const qreal progress = m_progress * 100;
|
||||||
return (static_cast<int>(progress) == 100)
|
return (static_cast<int>(progress) == 100)
|
||||||
? QString::fromLatin1("100%")
|
? QString::fromLatin1("100%")
|
||||||
@ -139,7 +137,7 @@ QString TorrentContentModelItem::displayData(const int column) const
|
|||||||
case COL_REMAINING:
|
case COL_REMAINING:
|
||||||
return Utils::Misc::friendlyUnit(remaining());
|
return Utils::Misc::friendlyUnit(remaining());
|
||||||
case COL_AVAILABILITY:
|
case COL_AVAILABILITY:
|
||||||
{
|
{
|
||||||
const qreal avail = availability();
|
const qreal avail = availability();
|
||||||
if (avail < 0)
|
if (avail < 0)
|
||||||
return tr("N/A");
|
return tr("N/A");
|
||||||
@ -147,7 +145,7 @@ QString TorrentContentModelItem::displayData(const int column) const
|
|||||||
const QString value = (avail >= 1)
|
const QString value = (avail >= 1)
|
||||||
? QString::fromLatin1("100")
|
? QString::fromLatin1("100")
|
||||||
: Utils::String::fromDouble((avail * 100), 1);
|
: Utils::String::fromDouble((avail * 100), 1);
|
||||||
return QString {value + C_THIN_SPACE + QLatin1Char('%')};
|
return {value + C_THIN_SPACE + QLatin1Char('%')};
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
Q_ASSERT(false);
|
Q_ASSERT(false);
|
||||||
|
Loading…
Reference in New Issue
Block a user