diff --git a/src/modules/netinstall/NetInstallViewStep.cpp b/src/modules/netinstall/NetInstallViewStep.cpp index 9c8b186dee8386d88cc8ca8aef4889f67a20e586..8515d537a9121400789aced292efdd29dd35fcce 100644 --- a/src/modules/netinstall/NetInstallViewStep.cpp +++ b/src/modules/netinstall/NetInstallViewStep.cpp @@ -111,10 +111,10 @@ NetInstallViewStep::isAtEnd() const } -QList< Calamares::job_ptr > +Calamares::JobList NetInstallViewStep::jobs() const { - return m_jobs; + return Calamares::JobList(); } diff --git a/src/modules/netinstall/NetInstallViewStep.h b/src/modules/netinstall/NetInstallViewStep.h index ad796b8b2571d4f886344496f568393ae0ae2d74..ffcc785c87d109ac153e691e5d483b51ca15a170 100644 --- a/src/modules/netinstall/NetInstallViewStep.h +++ b/src/modules/netinstall/NetInstallViewStep.h @@ -47,7 +47,7 @@ public: bool isAtBeginning() const override; bool isAtEnd() const override; - QList< Calamares::job_ptr > jobs() const override; + Calamares::JobList jobs() const override; void onActivate() override; @@ -63,7 +63,6 @@ private: NetInstallPage* m_widget; bool m_nextEnabled; CalamaresUtils::Locale::TranslatedString* m_sidebarLabel; // As it appears in the sidebar - QList< Calamares::job_ptr > m_jobs; }; CALAMARES_PLUGIN_FACTORY_DECLARATION( NetInstallViewStepFactory )