mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
17 lines
383 B
C++
17 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;
|
|
}
|