Mesh: Apply clang-format

This commit is contained in:
wmayer
2023-09-23 00:29:09 +02:00
committed by wwmayer
parent 23db389a76
commit 28ae0831cb
78 changed files with 4221 additions and 3294 deletions

View File

@@ -31,7 +31,8 @@ using namespace MeshGui;
/* TRANSLATOR MeshGui::Selection */
Selection::Selection(QWidget* parent)
: QWidget(parent), ui(new Ui_Selection())
: QWidget(parent)
, ui(new Ui_Selection())
{
ui->setupUi(this);
setupConnections();
@@ -56,6 +57,7 @@ Selection::~Selection()
void Selection::setupConnections()
{
// clang-format off
connect(ui->addSelection, &QPushButton::clicked,
this, &Selection::onAddSelectionClicked);
connect(ui->clearSelection, &QPushButton::clicked,
@@ -64,6 +66,7 @@ void Selection::setupConnections()
this, &Selection::onVisibleTrianglesToggled);
connect(ui->screenTriangles, &QPushButton::clicked,
this, &Selection::onScreenTrianglesToggled);
// clang-format on
}
void Selection::setObjects(const std::vector<Gui::SelectionObject>& o)