openmw/apps/wizard/componentselectionpage.cpp

15 lines
285 B
C++
Raw Normal View History

2013-12-08 21:35:57 +01:00
#include "componentselectionpage.hpp"
2013-12-08 22:58:29 +01:00
#include "mainwizard.hpp"
2013-12-08 21:35:57 +01:00
Wizard::ComponentSelectionPage::ComponentSelectionPage(QWidget *parent) :
QWizardPage(parent)
{
setupUi(this);
}
2013-12-08 22:58:29 +01:00
int Wizard::ComponentSelectionPage::nextId() const
{
return MainWizard::Page_Installation;
}