openmw-tes3coop/apps/wizard/intropage.cpp

17 lines
261 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#include "intropage.hpp"
2013-12-08 21:58:29 +00:00
#include "mainwizard.hpp"
Wizard::IntroPage::IntroPage(MainWizard *wizard) :
QWizardPage(wizard),
mWizard(wizard)
2013-12-08 20:35:57 +00:00
{
setupUi(this);
}
2013-12-08 21:58:29 +00:00
int Wizard::IntroPage::nextId() const
{
return MainWizard::Page_MethodSelection;
}