Skip to content

Commit f68b43e

Browse files
authored
fix typo (#62)
1 parent da04ebf commit f68b43e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ozwadmin-main/controllercommands.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,9 @@ void ControllerCommands::controllerCommandNotification(quint8 node, Notification
185185
case NotificationTypes::Ctrl_State_InProgress: {
186186
this->m_msgBox.setIcon(QMessageBox::Information);
187187
if (node) {
188-
this->m_msgBox.setText(QString("Exectuting Exclusion on Node %1").arg(node));
188+
this->m_msgBox.setText(QString("Executing Exclusion on Node %1").arg(node));
189189
} else {
190-
this->m_msgBox.setText("Exectuting Exclusion on Device");
190+
this->m_msgBox.setText("Executing Exclusion on Device");
191191
}
192192
this->m_msgBox.setDetailedText("Node is currently being removed from its Network Association");
193193
this->m_msgBox.setStandardButtons(QMessageBox::NoButton);
@@ -278,9 +278,9 @@ void ControllerCommands::controllerCommandNotification(quint8 node, Notification
278278
details.append("Some Devices Failed\n");
279279
}
280280
if (node) {
281-
this->m_msgBox.setText(QString("Exectuting Heal Network on Node %1").arg(node));
281+
this->m_msgBox.setText(QString("Executing Heal Network on Node %1").arg(node));
282282
} else {
283-
this->m_msgBox.setText("Exectuting Heal Network");
283+
this->m_msgBox.setText("Executing Heal Network");
284284
}
285285
if (!details.isEmpty()) this->m_msgBox.setDetailedText(details);
286286
this->m_msgBox.setStandardButtons(QMessageBox::Close);

0 commit comments

Comments
 (0)