diff --git a/src/modules/welcome/qmlmain.cpp b/src/modules/welcome/qmlmain.cpp index 9c160fc1d..93017a9c7 100644 --- a/src/modules/welcome/qmlmain.cpp +++ b/src/modules/welcome/qmlmain.cpp @@ -2,6 +2,8 @@ * models from libcalamares for displaying a welcome. */ +#include + #include #include #include @@ -15,6 +17,8 @@ #include +#include "JobQueue.h" +#include "Settings.h" #include "locale/LabelModel.h" #include "utils/Logger.h" @@ -44,6 +48,9 @@ int main(int argc, char **argv) Logger::setupLogLevel( Logger::LOGVERBOSE ); + std::unique_ptr< Calamares::Settings > settings_p( new Calamares::Settings( QString(), true ) ); + std::unique_ptr< Calamares::JobQueue > jobqueue_p( new Calamares::JobQueue( nullptr ) ); + QMainWindow mw; QWidget background; QVBoxLayout vl;