mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-29 04:35:41 +08:00
Use nested namespaces (C++17 feature)
This commit is contained in:
@@ -9,19 +9,16 @@
|
||||
#include "copymodelsfromotherswiftversionsdialog.h"
|
||||
#include "ui_copymodelsfromotherswiftversionsdialog.h"
|
||||
|
||||
namespace BlackGui
|
||||
namespace BlackGui::Components
|
||||
{
|
||||
namespace Components
|
||||
CCopyModelsFromOtherSwiftVersionsDialog::CCopyModelsFromOtherSwiftVersionsDialog(QWidget *parent) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::CCopyModelsFromOtherSwiftVersionsDialog)
|
||||
{
|
||||
CCopyModelsFromOtherSwiftVersionsDialog::CCopyModelsFromOtherSwiftVersionsDialog(QWidget *parent) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::CCopyModelsFromOtherSwiftVersionsDialog)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
this->setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
||||
}
|
||||
ui->setupUi(this);
|
||||
this->setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
||||
}
|
||||
|
||||
CCopyModelsFromOtherSwiftVersionsDialog::~CCopyModelsFromOtherSwiftVersionsDialog()
|
||||
{ }
|
||||
} // ns
|
||||
CCopyModelsFromOtherSwiftVersionsDialog::~CCopyModelsFromOtherSwiftVersionsDialog()
|
||||
{ }
|
||||
} // ns
|
||||
|
||||
Reference in New Issue
Block a user