mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 12:20:41 +00:00
15 lines
255 B
C++
15 lines
255 B
C++
#include "installationpage.hpp"
|
|
|
|
#include "mainwizard.hpp"
|
|
|
|
Wizard::InstallationPage::InstallationPage(QWidget *parent) :
|
|
QWizardPage(parent)
|
|
{
|
|
setupUi(this);
|
|
}
|
|
|
|
int Wizard::InstallationPage::nextId() const
|
|
{
|
|
return MainWizard::Page_Import;
|
|
}
|