mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-03 17:37:18 +00:00
15 lines
299 B
C++
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;
|
|
}
|