forked from teamnwah/openmw-tes3coop
14 lines
299 B
C++
14 lines
299 B
C++
#include "existinginstallationpage.hpp"
|
|
|
|
#include "mainwizard.hpp"
|
|
|
|
Wizard::ExistingInstallationPage::ExistingInstallationPage(QWidget *parent) :
|
|
QWizardPage(parent)
|
|
{
|
|
setupUi(this);
|
|
}
|
|
|
|
int Wizard::ExistingInstallationPage::nextId() const
|
|
{
|
|
return MainWizard::Page_ComponentSelection;
|
|
}
|