aboutsummaryrefslogtreecommitdiff
path: root/gui/downloaddialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/downloaddialog.cpp')
-rw-r--r--gui/downloaddialog.cpp38
1 files changed, 1 insertions, 37 deletions
diff --git a/gui/downloaddialog.cpp b/gui/downloaddialog.cpp
index 526a89538f..8b7408c8cd 100644
--- a/gui/downloaddialog.cpp
+++ b/gui/downloaddialog.cpp
@@ -24,6 +24,7 @@
#include "backends/cloud/cloudmanager.h"
#include "common/config-manager.h"
#include "common/translation.h"
+#include "common/util.h"
#include "engines/metaengine.h"
#include "gui/browser.h"
#include "gui/chooser.h"
@@ -207,43 +208,6 @@ void DownloadDialog::reflowLayout() {
refreshWidgets();
}
-namespace {
-Common::String getHumanReadableBytes(uint64 bytes, Common::String &unitsOut) {
- Common::String result = Common::String::format("%lu", bytes);
- unitsOut = "B";
-
- if (bytes >= 1024) {
- bytes /= 1024;
- result = Common::String::format("%lu", bytes);
- unitsOut = "KB";
- }
-
- double floating = bytes;
-
- if (bytes >= 1024) {
- bytes /= 1024;
- floating /= 1024.0;
- unitsOut = "MB";
- }
-
- if (bytes >= 1024) {
- bytes /= 1024;
- floating /= 1024.0;
- unitsOut = "GB";
- }
-
- if (bytes >= 1024) { // woah
- bytes /= 1024;
- floating /= 1024.0;
- unitsOut = "TB";
- }
-
- // print one digit after floating point
- result = Common::String::format("%.1f", floating);
- return result;
-}
-}
-
Common::String DownloadDialog::getSizeLabelText() {
Common::String downloaded, downloadedUnits, total, totalUnits;
downloaded = getHumanReadableBytes(CloudMan.getDownloadBytesNumber(), downloadedUnits);