mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:49:56 +00:00
18 lines
418 B
C++
18 lines
418 B
C++
#include "languageselectionpage.hpp"
|
|
|
|
#include "mainwizard.hpp"
|
|
|
|
Wizard::LanguageSelectionPage::LanguageSelectionPage(MainWizard *wizard) :
|
|
QWizardPage(wizard),
|
|
mWizard(wizard)
|
|
{
|
|
setupUi(this);
|
|
}
|
|
|
|
int Wizard::LanguageSelectionPage::nextId() const
|
|
{
|
|
if (field("installation.new").toBool() == true)
|
|
return MainWizard::Page_InstallationTarget;
|
|
|
|
return MainWizard::Page_ExistingInstallation;
|
|
}
|