[welcome] Use convenience types

This commit is contained in:
Adriaan de Groot 2019-02-25 07:05:12 -05:00
parent 8a8ec01380
commit 987cf36f51
2 changed files with 3 additions and 3 deletions

View File

@ -99,10 +99,10 @@ WelcomeViewStep::isAtEnd() const
} }
QList< Calamares::job_ptr > Calamares::JobList
WelcomeViewStep::jobs() const WelcomeViewStep::jobs() const
{ {
return QList< Calamares::job_ptr >(); return Calamares::JobList();
} }

View File

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