summaryrefslogtreecommitdiffstats
path: root/backend/BaseUpdate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backend/BaseUpdate.cpp')
-rw-r--r--backend/BaseUpdate.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/backend/BaseUpdate.cpp b/backend/BaseUpdate.cpp
new file mode 100644
index 00000000..8a4aced3
--- /dev/null
+++ b/backend/BaseUpdate.cpp
@@ -0,0 +1,18 @@
+#include "BaseUpdate.h"
+
+BaseUpdate::BaseUpdate ( BaseInstance* inst, QObject* parent ) : Task ( parent )
+{
+ m_inst = inst;
+}
+
+void BaseUpdate::error ( const QString& msg )
+{
+ emit gameUpdateError(msg);
+}
+
+void BaseUpdate::updateDownloadProgress(qint64 current, qint64 total)
+{
+ // The progress on the current file is current / total
+ float currentDLProgress = (float) current / (float) total;
+ setProgress((int)(currentDLProgress * 100)); // convert to percentage
+} \ No newline at end of file