forked from mirror/openmw-tes3mp
14 lines
235 B
C++
14 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;
|
|
}
|