mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 18:19:55 +00:00
15 lines
259 B
C++
15 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;
|
|
}
|