mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
18 lines
383 B
C++
18 lines
383 B
C++
#include "methodselectionpage.hpp"
|
|
#include <QDebug>
|
|
#include "mainwizard.hpp"
|
|
|
|
Wizard::MethodSelectionPage::MethodSelectionPage(MainWizard *wizard) :
|
|
QWizardPage(wizard),
|
|
mWizard(wizard)
|
|
{
|
|
setupUi(this);
|
|
|
|
registerField("installation.new", newLocationRadioButton);
|
|
}
|
|
|
|
int Wizard::MethodSelectionPage::nextId() const
|
|
{
|
|
return MainWizard::Page_LanguageSelection;
|
|
}
|