From 5a6c52d8f3322be753e2a72ac14046629b03466c Mon Sep 17 00:00:00 2001 From: Uwe Date: Fri, 1 Jul 2022 03:12:15 +0200 Subject: [PATCH] [FEM] [skip CI] fix a typo - spot by the spellchecker CI --- src/Mod/Fem/Gui/TaskPostBoxes.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Fem/Gui/TaskPostBoxes.cpp b/src/Mod/Fem/Gui/TaskPostBoxes.cpp index b1b011e23b..f12f7fe355 100644 --- a/src/Mod/Fem/Gui/TaskPostBoxes.cpp +++ b/src/Mod/Fem/Gui/TaskPostBoxes.cpp @@ -531,7 +531,7 @@ void TaskPostClip::on_CreateButton_triggered(QAction*) { int currentItem = ui->FunctionBox->currentIndex(); collectImplicitFunctions(); - // if a new function was successfuly added use it + // if a new function was successfully added use it int indexCount = ui->FunctionBox->count(); if (indexCount > currentItem + 1) ui->FunctionBox->setCurrentIndex(indexCount - 1); @@ -1486,7 +1486,7 @@ void TaskPostCut::on_CreateButton_triggered(QAction*) { int currentItem = ui->FunctionBox->currentIndex(); collectImplicitFunctions(); - // if a new function was successfuly added use it + // if a new function was successfully added use it int indexCount = ui->FunctionBox->count(); if (indexCount > currentItem + 1) ui->FunctionBox->setCurrentIndex(indexCount - 1);