mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 23:37:59 +00:00
Use correct return statement
This commit is contained in:
parent
8d9b6cca63
commit
46e6ed480a
@ -142,7 +142,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 {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