mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-27 08:19:30 +08:00
Use switch statement
This commit is contained in:
parent
6f6033cf1c
commit
fbd5699786
@ -250,13 +250,20 @@ QString Utils::Misc::friendlyUnit(const qint64 bytesValue, const bool isSpeed)
|
|||||||
+ unitString(unit, isSpeed);
|
+ unitString(unit, isSpeed);
|
||||||
}
|
}
|
||||||
|
|
||||||
int Utils::Misc::friendlyUnitPrecision(SizeUnit unit)
|
int Utils::Misc::friendlyUnitPrecision(const SizeUnit unit)
|
||||||
{
|
{
|
||||||
// friendlyUnit's number of digits after the decimal point
|
// friendlyUnit's number of digits after the decimal point
|
||||||
if (unit == SizeUnit::Byte) return 0;
|
switch (unit) {
|
||||||
if (unit <= SizeUnit::MebiByte) return 1;
|
case SizeUnit::Byte:
|
||||||
if (unit == SizeUnit::GibiByte) return 2;
|
return 0;
|
||||||
|
case SizeUnit::KibiByte:
|
||||||
|
case SizeUnit::MebiByte:
|
||||||
|
return 1;
|
||||||
|
case SizeUnit::GibiByte:
|
||||||
|
return 2;
|
||||||
|
default:
|
||||||
return 3;
|
return 3;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
qlonglong Utils::Misc::sizeInBytes(qreal size, const Utils::Misc::SizeUnit unit)
|
qlonglong Utils::Misc::sizeInBytes(qreal size, const Utils::Misc::SizeUnit unit)
|
||||||
|
Loading…
Reference in New Issue
Block a user