mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
15 lines
291 B
C++
15 lines
291 B
C++
#include "installationtargetpage.hpp"
|
|
|
|
#include "mainwizard.hpp"
|
|
|
|
Wizard::InstallationTargetPage::InstallationTargetPage(QWidget *parent) :
|
|
QWizardPage(parent)
|
|
{
|
|
setupUi(this);
|
|
}
|
|
|
|
int Wizard::InstallationTargetPage::nextId() const
|
|
{
|
|
return MainWizard::Page_ComponentSelection;
|
|
}
|