openmw/apps/wizard/installationpage.cpp

15 lines
255 B
C++
Raw Normal View History

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