mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
16 lines
259 B
C++
16 lines
259 B
C++
#include "importpage.hpp"
|
|
|
|
#include "mainwizard.hpp"
|
|
|
|
Wizard::ImportPage::ImportPage(MainWizard *wizard) :
|
|
QWizardPage(wizard),
|
|
mWizard(wizard)
|
|
{
|
|
setupUi(this);
|
|
}
|
|
|
|
int Wizard::ImportPage::nextId() const
|
|
{
|
|
return MainWizard::Page_Conclusion;
|
|
}
|