summaryrefslogtreecommitdiffstats
path: root/api/logic/meta/Version.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'api/logic/meta/Version.cpp')
-rw-r--r--api/logic/meta/Version.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/api/logic/meta/Version.cpp b/api/logic/meta/Version.cpp
index 039f4fef..b79c178a 100644
--- a/api/logic/meta/Version.cpp
+++ b/api/logic/meta/Version.cpp
@@ -48,11 +48,16 @@ QDateTime Version::time() const
std::unique_ptr<Task> Version::remoteUpdateTask()
{
- return std::unique_ptr<VersionRemoteLoadTask>(new VersionRemoteLoadTask(this, this));
+ return std::unique_ptr<RemoteLoadTask>(new RemoteLoadTask(this));
}
std::unique_ptr<Task> Version::localUpdateTask()
{
- return std::unique_ptr<VersionLocalLoadTask>(new VersionLocalLoadTask(this, this));
+ return std::unique_ptr<LocalLoadTask>(new LocalLoadTask(this));
+}
+
+void Version::parse(const QJsonObject& obj)
+{
+ parseVersion(obj, this);
}
void Version::merge(const std::shared_ptr<BaseEntity> &other)
@@ -78,10 +83,6 @@ QString Version::localFilename() const
{
return m_uid + '/' + m_version + ".json";
}
-QJsonObject Version::serialized() const
-{
- return Format::serializeVersion(this);
-}
void Version::setType(const QString &type)
{