1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-17 01:10:10 +00:00
OpenMW/apps/wizard/installationpage.cpp

15 lines
255 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#include "installationpage.hpp"
2013-12-08 21:58:29 +00:00
#include "mainwizard.hpp"
2013-12-08 20:35:57 +00:00
Wizard::InstallationPage::InstallationPage(QWidget *parent) :
QWizardPage(parent)
{
setupUi(this);
}
2013-12-08 21:58:29 +00:00
int Wizard::InstallationPage::nextId() const
{
return MainWizard::Page_Import;
}