mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 15:37:26 -06:00
- Code optimization
This commit is contained in:
14
src/misc.h
14
src/misc.h
@@ -106,17 +106,13 @@ class misc : public QObject{
|
|||||||
// see http://en.wikipedia.org/wiki/Kilobyte
|
// see http://en.wikipedia.org/wiki/Kilobyte
|
||||||
// value must be given in bytes
|
// value must be given in bytes
|
||||||
static QString friendlyUnit(float val) {
|
static QString friendlyUnit(float val) {
|
||||||
if(val < 0) {
|
if(val < 0)
|
||||||
return tr("Unknown", "Unknown (size)");
|
return tr("Unknown", "Unknown (size)");
|
||||||
}
|
const QString units[5] = {tr("B", "bytes"), tr("KiB", "kibibytes (1024 bytes)"), tr("MiB", "mebibytes (1024 kibibytes)"), tr("GiB", "gibibytes (1024 mibibytes)"), tr("TiB", "tebibytes (1024 gibibytes)")};
|
||||||
const QString units[4] = {tr("B", "bytes"), tr("KiB", "kibibytes (1024 bytes)"), tr("MiB", "mebibytes (1024 kibibytes)"), tr("GiB", "gibibytes (1024 mibibytes)")};
|
char i = 0;
|
||||||
for(unsigned int i=0; i<5; ++i) {
|
while(val > 1024. && i++<6)
|
||||||
if (val < 1024.) {
|
|
||||||
return QString(QByteArray::number(val, 'f', 1)) + units[i];
|
|
||||||
}
|
|
||||||
val /= 1024.;
|
val /= 1024.;
|
||||||
}
|
return QString(QByteArray::number(val, 'f', 1)) + units[(int)i];
|
||||||
return QString(QByteArray::number(val, 'f', 1)) + tr("TiB", "tebibytes (1024 gibibytes)");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool isPreviewable(QString extension){
|
static bool isPreviewable(QString extension){
|
||||||
|
|||||||
Reference in New Issue
Block a user