1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-29 12:20:41 +00:00
OpenMW/apps/wizard/installationpage.cpp

15 lines
255 B
C++

#include "installationpage.hpp"
#include "mainwizard.hpp"
Wizard::InstallationPage::InstallationPage(QWidget *parent) :
QWizardPage(parent)
{
setupUi(this);
}
int Wizard::InstallationPage::nextId() const
{
return MainWizard::Page_Import;
}