1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 07:53:53 +00:00
openmw/apps/wizard/componentselectionpage.cpp

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;
}