2013-12-08 20:35:57 +00:00
|
|
|
#include "importpage.hpp"
|
|
|
|
|
2013-12-08 21:58:29 +00:00
|
|
|
#include "mainwizard.hpp"
|
|
|
|
|
2013-12-13 12:38:49 +00:00
|
|
|
Wizard::ImportPage::ImportPage(MainWizard *wizard) :
|
|
|
|
QWizardPage(wizard),
|
|
|
|
mWizard(wizard)
|
2013-12-08 20:35:57 +00:00
|
|
|
{
|
|
|
|
setupUi(this);
|
2014-02-25 14:33:30 +00:00
|
|
|
|
|
|
|
registerField(QLatin1String("installation.import-settings"), importCheckBox);
|
|
|
|
registerField(QLatin1String("installation.import-addons"), addonsCheckBox);
|
2013-12-08 20:35:57 +00:00
|
|
|
}
|
2013-12-08 21:58:29 +00:00
|
|
|
|
|
|
|
int Wizard::ImportPage::nextId() const
|
|
|
|
{
|
|
|
|
return MainWizard::Page_Conclusion;
|
|
|
|
}
|