fix typo in enum-entry and comments

This commit is contained in:
plc-user
2025-02-17 09:33:35 +01:00
parent 51225d5f59
commit 67112bf8e5
10 changed files with 25 additions and 25 deletions

View File

@@ -845,7 +845,7 @@ bool Element::fromXml(QDomElement &e,
QStringLiteral("elementInformation"));
//Load override properties (For now, only used when the element is a terminal)
if (m_data.m_type == ElementData::Terminale)
if (m_data.m_type == ElementData::Terminal)
{
auto elmt_type_list = QETXML::subChild(e, QStringLiteral("properties"), QStringLiteral("element_type"));
@@ -976,7 +976,7 @@ QDomElement Element::toXml(
}
//Save override properties (For now, only used when the element is a terminal)
if (m_data.m_type == ElementData::Terminale)
if (m_data.m_type == ElementData::Terminal)
{
QDomElement properties = document.createElement(QStringLiteral("properties"));
QDomElement element_type = document.createElement(QStringLiteral("element_type"));