mirror of
https://github.com/ioquake/launch.git
synced 2024-11-22 03:21:23 +00:00
14 lines
282 B
C++
14 lines
282 B
C++
#include "installwizard_patch.h"
|
|
#include "ui_installwizard_patch.h"
|
|
|
|
InstallWizard_Patch::InstallWizard_Patch(QWidget *parent) :
|
|
QWizardPage(parent),
|
|
ui(new Ui::InstallWizard_Patch)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
InstallWizard_Patch::~InstallWizard_Patch()
|
|
{
|
|
delete ui;
|
|
}
|