Use nested namespaces (C++17 feature)

This commit is contained in:
Mat Sutcliffe
2021-09-15 21:44:54 +01:00
parent 3f2e5b0b69
commit 57d32da826
1345 changed files with 146075 additions and 150376 deletions

View File

@@ -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