You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3mp/apps/wizard/installationpage.cpp

24 lines
525 B
C++

#include "installationpage.hpp"
#include <QDebug>
#include "mainwizard.hpp"
Wizard::InstallationPage::InstallationPage(MainWizard *wizard) :
QWizardPage(wizard),
mWizard(wizard)
{
setupUi(this);
}
void Wizard::InstallationPage::initializePage()
{
qDebug() << "installing to: " << field("installation.path").toString();
logTextEdit->setText(QString("Installing to %1").arg(field("installation.path").toString()));
}
int Wizard::InstallationPage::nextId() const
{
return MainWizard::Page_Import;
}