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