1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-29 03:19:44 +00:00
OpenMW/apps/wizard/importpage.cpp

15 lines
235 B
C++

#include "importpage.hpp"
#include "mainwizard.hpp"
Wizard::ImportPage::ImportPage(QWidget *parent) :
QWizardPage(parent)
{
setupUi(this);
}
int Wizard::ImportPage::nextId() const
{
return MainWizard::Page_Conclusion;
}