Skip to content
Snippets Groups Projects
Commit 4199cc20 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

clang-format

parent abea7f7a
No related branches found
No related tags found
1 merge request!2071correct some variable shadowing
Pipeline #117862 passed
...@@ -114,7 +114,8 @@ void ParameterTreeBuilder::addSample() ...@@ -114,7 +114,8 @@ void ParameterTreeBuilder::addSample()
int iLayout = 0; int iLayout = 0;
for (auto* layout : layer->layoutItems()) { for (auto* layout : layer->layoutItems()) {
auto* label2 = new ParameterLabelItem("Layout" + QString::number(iLayout++), layerLabel); auto* label2 =
new ParameterLabelItem("Layout" + QString::number(iLayout++), layerLabel);
if (!layout->totalDensityIsDefinedByInterference()) if (!layout->totalDensityIsDefinedByInterference())
addParameterItem(label2, layout->ownDensity()); addParameterItem(label2, layout->ownDensity());
......
...@@ -32,12 +32,12 @@ QString GUI::Util::String::suggestName(const QStringList& existingNames, const Q ...@@ -32,12 +32,12 @@ QString GUI::Util::String::suggestName(const QStringList& existingNames, const Q
QString baseName = name; QString baseName = name;
{ {
QRegularExpressionMatch matched{regexp.match(baseName)}; QRegularExpressionMatch matched{regexp.match(baseName)};
if (matched.hasMatch()) { if (matched.hasMatch()) {
newNumber = matched.captured(1).toInt(); newNumber = matched.captured(1).toInt();
baseName.replace(matched.captured(0), ""); baseName.replace(matched.captured(0), "");
baseName = baseName.trimmed(); baseName = baseName.trimmed();
} }
} }
for (const auto& n : existingNames) { for (const auto& n : existingNames) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment