[summary] Stylistic fixes before moving Config objects around

main
Adriaan de Groot 3 years ago
parent 6c7e7a6d55
commit f8c3b76367

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

@ -10,13 +10,10 @@
#ifndef SUMMARYPAGEPLUGIN_H
#define SUMMARYPAGEPLUGIN_H
#include <QObject>
#include "DllMacro.h"
#include "utils/PluginFactory.h"
#include "viewpages/ViewStep.h"
#include "DllMacro.h"
class SummaryPage;
class PLUGINDLLEXPORT SummaryViewStep : public Calamares::ViewStep
@ -37,7 +34,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;
void onLeave() override;

Loading…
Cancel
Save