mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 09:19:55 +00:00
17 lines
388 B
C++
17 lines
388 B
C++
#include "intropage.hpp"
|
|
|
|
#include "mainwizard.hpp"
|
|
|
|
Wizard::IntroPage::IntroPage(QWidget *parent) :
|
|
QWizardPage(parent)
|
|
{
|
|
mWizard = qobject_cast<MainWizard*>(parent);
|
|
|
|
setupUi(this);
|
|
setPixmap(QWizard::WatermarkPixmap, QPixmap(QLatin1String(":/images/intropage-background.png")));
|
|
}
|
|
|
|
int Wizard::IntroPage::nextId() const
|
|
{
|
|
return MainWizard::Page_MethodSelection;
|
|
}
|