NOISSUE stuff and things happened. Maybe.

This commit is contained in:
Petr Mrázek
2017-03-19 23:58:54 +01:00
parent 2660418d58
commit f557c13679
23 changed files with 210 additions and 212 deletions

View File

@ -29,15 +29,15 @@ VersionList::VersionList(const QString &uid, QObject *parent)
setObjectName("Version list: " + uid);
}
Task *VersionList::getLoadTask()
shared_qobject_ptr<Task> VersionList::getLoadTask()
{
// TODO: create a wrapper task that will chain from root to here.
return nullptr;
load();
return getCurrentTask();
}
bool VersionList::isLoaded()
{
return isLoaded();
return BaseEntity::isLoaded();
}
const BaseVersionPtr VersionList::at(int i) const