From fd8f860223e8b0adcede4d4194a0417147bd2109 Mon Sep 17 00:00:00 2001 From: wmayer Date: Fri, 31 Dec 2021 14:03:51 +0100 Subject: [PATCH] [skip ci] fix some typos --- src/Mod/Fem/Gui/TaskFemConstraint.cpp | 2 +- src/Mod/PartDesign/Gui/TaskDressUpParameters.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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);