mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-03 17:37:18 +00:00
17 lines
261 B
C++
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;
|
|
}
|