Fix wrong use of QStringLiteral and QLatin1String

This commit is contained in:
joshua
2022-12-02 18:26:56 +01:00
parent 81640015e5
commit d23a5bbdc7
4 changed files with 16 additions and 16 deletions

View File

@@ -976,7 +976,7 @@ QDomElement TerminalStrip::toXml(QDomDocument &parent_document)
root_elmt.appendChild(m_data.toXml(parent_document));
//Undrawed terminals
auto xml_layout = parent_document.createElement("layout");
auto xml_layout = parent_document.createElement(QStringLiteral("layout"));
for (auto &phy_t : m_physical_terminals) {
xml_layout.appendChild(phy_t->toXml(parent_document));
}