1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 09:55:35 +00:00
OpenMW/apps/wizard/methodselectionpage.cpp

18 lines
383 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#include "methodselectionpage.hpp"
#include <QDebug>
2013-12-08 21:58:29 +00:00
#include "mainwizard.hpp"
Wizard::MethodSelectionPage::MethodSelectionPage(MainWizard *wizard) :
QWizardPage(wizard),
mWizard(wizard)
2013-12-08 20:35:57 +00:00
{
setupUi(this);
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
{
return MainWizard::Page_LanguageSelection;
2013-12-08 21:58:29 +00:00
}