1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +00:00
OpenMW/apps/wizard/intropage.cpp

17 lines
261 B
C++

#include "intropage.hpp"
#include "mainwizard.hpp"
Wizard::IntroPage::IntroPage(MainWizard *wizard) :
QWizardPage(wizard),
mWizard(wizard)
{
setupUi(this);
}
int Wizard::IntroPage::nextId() const
{
return MainWizard::Page_MethodSelection;
}