Code style.

This commit is contained in:
Roman Telezhynskyi 2022-05-10 17:29:35 +03:00
parent 32cd5823cb
commit a0db254016

View File

@ -401,7 +401,7 @@ MainWindow::MainWindow(QWidget *parent)
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
void MainWindow::AddPP(const QString &PPName) void MainWindow::AddPP(const QString &PPName)
{ {
if (doc->appendPP(PPName) == false) if (not doc->appendPP(PPName))
{ {
qCDebug(vMainWindow, "Error creating pattern piece with the name %s.", qUtf8Printable(PPName)); qCDebug(vMainWindow, "Error creating pattern piece with the name %s.", qUtf8Printable(PPName));
return; return;
@ -433,7 +433,7 @@ void MainWindow::AddPP(const QString &PPName)
initData.name = label; initData.name = label;
initData.nameActivPP = PPName; initData.nameActivPP = PPName;
auto spoint = VToolBasePoint::Create(initData); auto *spoint = VToolBasePoint::Create(initData);
emit ui->view->itemClicked(spoint); emit ui->view->itemClicked(spoint);
SetEnableTool(true); SetEnableTool(true);