mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-01 04:15:35 +00:00
14 lines
255 B
C++
14 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;
|
|
}
|