mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 07:53:53 +00:00
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;
|
|
}
|