[finished] Use idiomatic Calamares::JobList

This commit is contained in:
Adriaan de Groot 2019-05-28 13:20:19 +02:00
parent 1915547004
commit 38c36e2439
2 changed files with 3 additions and 3 deletions

View File

@ -156,10 +156,10 @@ FinishedViewStep::onActivate()
}
QList< Calamares::job_ptr >
Calamares::JobList
FinishedViewStep::jobs() const
{
return QList< Calamares::job_ptr >();
return Calamares::JobList();
}
void

View File

@ -57,7 +57,7 @@ public:
void onActivate() override;
QList< Calamares::job_ptr > jobs() const override;
Calamares::JobList jobs() const override;
void setConfigurationMap( const QVariantMap& configurationMap ) override;