mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-28 20:25:34 +08:00
19 lines
813 B
C++
19 lines
813 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2018 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
#include "copymodelsfromotherswiftversionsdialog.h"
|
|
#include "ui_copymodelsfromotherswiftversionsdialog.h"
|
|
|
|
namespace BlackGui::Components
|
|
{
|
|
CCopyModelsFromOtherSwiftVersionsDialog::CCopyModelsFromOtherSwiftVersionsDialog(QWidget *parent) : QDialog(parent),
|
|
ui(new Ui::CCopyModelsFromOtherSwiftVersionsDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
this->setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
}
|
|
|
|
CCopyModelsFromOtherSwiftVersionsDialog::~CCopyModelsFromOtherSwiftVersionsDialog()
|
|
{}
|
|
} // ns
|