mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 15:27:54 +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)
|
||||
? QString::fromLatin1("100")
|
||||
: Utils::String::fromDouble((avail * 100), 1);
|
||||
return {value + C_THIN_SPACE + QLatin1Char('%')};
|
||||
return (value + C_THIN_SPACE + QLatin1Char('%'));
|
||||
}
|
||||
default:
|
||||
Q_ASSERT(false);
|
||||
|
Loading…
Reference in New Issue
Block a user