diff --git a/src/Mod/Fem/Gui/TaskFemConstraint.cpp b/src/Mod/Fem/Gui/TaskFemConstraint.cpp index 32393373f9..b87ea73820 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraint.cpp +++ b/src/Mod/Fem/Gui/TaskFemConstraint.cpp @@ -208,7 +208,7 @@ const QString TaskFemConstraint::makeRefText(const App::DocumentObject* obj, con void TaskFemConstraint::createDeleteAction(QListWidget* parentList) { - // creates a context menu, a shortcutt for it and connects it to e slot function + // creates a context menu, a shortcut for it and connects it to a slot function deleteAction = new QAction(tr("Delete"), this); deleteAction->setShortcut(QKeySequence::Delete); diff --git a/src/Mod/PartDesign/Gui/TaskDressUpParameters.cpp b/src/Mod/PartDesign/Gui/TaskDressUpParameters.cpp index 3bbd58e3c3..950ebc2bcf 100644 --- a/src/Mod/PartDesign/Gui/TaskDressUpParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskDressUpParameters.cpp @@ -267,7 +267,7 @@ void TaskDressUpParameters::itemClickedTimeout() { void TaskDressUpParameters::createAddAllEdgesAction(QListWidget* parentList) { - // creates a context menu, a shortcut for it and connects it to e slot function + // creates a context menu, a shortcut for it and connects it to a slot function addAllEdgesAction = new QAction(tr("Add all edges"), this); addAllEdgesAction->setShortcut(QKeySequence(QString::fromLatin1("Ctrl+Shift+A"))); @@ -284,7 +284,7 @@ void TaskDressUpParameters::createAddAllEdgesAction(QListWidget* parentList) void TaskDressUpParameters::createDeleteAction(QListWidget* parentList, QWidget* parentButton) { - // creates a context menu, a shortcut for it and connects it to e slot function + // creates a context menu, a shortcut for it and connects it to a slot function deleteAction = new QAction(tr("Remove"), this); deleteAction->setShortcut(QKeySequence::Delete);