Cleanup: move return statement to new line + trailing
Follow-up to #6497
This commit is contained in:
@@ -723,7 +723,9 @@ void TaskSketcherElements::setItemVisibility(QListWidgetItem* it)
|
||||
{
|
||||
ElementItem* item = static_cast<ElementItem*>(it);
|
||||
|
||||
if (ui->filterBox->checkState() == Qt::Unchecked) { item->setHidden(false); return; }
|
||||
if (ui->filterBox->checkState() == Qt::Unchecked) { item->setHidden(false);
|
||||
return;
|
||||
}
|
||||
|
||||
using GeometryState = ElementItem::GeometryState;
|
||||
|
||||
|
||||
@@ -746,7 +746,8 @@ bool TaskComplexSection::reject()
|
||||
Gui::Command::updateActive();
|
||||
Gui::Command::doCommand(Gui::Command::Gui, "Gui.ActiveDocument.resetEdit()");
|
||||
|
||||
return false;}
|
||||
return false;
|
||||
}
|
||||
|
||||
void TaskComplexSection::changeEvent(QEvent* event)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user