2013-12-08 20:35:57 +00:00
|
|
|
#include "methodselectionpage.hpp"
|
2013-12-13 12:38:49 +00:00
|
|
|
#include <QDebug>
|
2013-12-08 21:58:29 +00:00
|
|
|
#include "mainwizard.hpp"
|
|
|
|
|
2013-12-13 12:38:49 +00:00
|
|
|
Wizard::MethodSelectionPage::MethodSelectionPage(MainWizard *wizard) :
|
|
|
|
QWizardPage(wizard),
|
|
|
|
mWizard(wizard)
|
2013-12-08 20:35:57 +00:00
|
|
|
{
|
|
|
|
setupUi(this);
|
2013-12-13 12:38:49 +00:00
|
|
|
|
|
|
|
registerField("installation.new", newLocationRadioButton);
|
2013-12-08 20:35:57 +00:00
|
|
|
}
|
2013-12-08 21:58:29 +00:00
|
|
|
|
|
|
|
int Wizard::MethodSelectionPage::nextId() const
|
|
|
|
{
|
2013-12-13 14:30:49 +00:00
|
|
|
return MainWizard::Page_LanguageSelection;
|
2013-12-08 21:58:29 +00:00
|
|
|
}
|