[skip ci] fix some typos

This commit is contained in:
wmayer
2021-12-31 14:03:51 +01:00
parent a324b33104
commit fd8f860223
2 changed files with 3 additions and 3 deletions

View File

@@ -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);

View File

@@ -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);