1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-03 17:37:18 +00:00
OpenMW/apps/wizard/existinginstallationpage.cpp

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