mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 11:29:54 +00:00
14 lines
291 B
C++
14 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;
|
|
}
|