Skip to content

Commit

Permalink
Measure: Pass empty arg to QStringLiteral macro
Browse files Browse the repository at this point in the history
Silences compiler warning about missing expected macro argument (MSVC warning C4003).
  • Loading branch information
chennes authored and yorikvanhavre committed Dec 23, 2024
1 parent 9db4e89 commit 5688e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Measure/Gui/TaskMeasure.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ TaskMeasure::TaskMeasure()
auto* settingsLayout = new QHBoxLayout();
settingsLayout->addItem(new QSpacerItem(0, 0, QSizePolicy::Expanding));
settingsLayout->addWidget(mSettings);
formLayout->addRow(QStringLiteral(), settingsLayout);
formLayout->addRow(QStringLiteral(""), settingsLayout);
formLayout->addRow(tr("Mode:"), modeSwitch);
formLayout->addRow(showDeltaLabel, showDelta);
formLayout->addRow(tr("Result:"), valueResult);
Expand Down

0 comments on commit 5688e81

Please sign in to comment.