1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00
OpenMW/apps/wizard/importpage.cpp

16 lines
259 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#include "importpage.hpp"
2013-12-08 21:58:29 +00:00
#include "mainwizard.hpp"
Wizard::ImportPage::ImportPage(MainWizard *wizard) :
QWizardPage(wizard),
mWizard(wizard)
2013-12-08 20:35:57 +00:00
{
setupUi(this);
}
2013-12-08 21:58:29 +00:00
int Wizard::ImportPage::nextId() const
{
return MainWizard::Page_Conclusion;
}