mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-17 10:52:26 -04:00
19 lines
403 B
C++
19 lines
403 B
C++
#include "methodselectionpage.hpp"
|
|
|
|
#include "mainwizard.hpp"
|
|
|
|
Wizard::MethodSelectionPage::MethodSelectionPage(QWidget *parent) :
|
|
QWizardPage(parent)
|
|
{
|
|
setupUi(this);
|
|
}
|
|
|
|
int Wizard::MethodSelectionPage::nextId() const
|
|
{
|
|
if (newLocationRadioButton->isChecked()) {
|
|
return MainWizard::Page_InstallationTarget;
|
|
} else {
|
|
return MainWizard::Page_ExistingInstallation;
|
|
}
|
|
}
|