mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-21 16:50:53 +01:00
Fix wrong use of QStringLiteral and QLatin1String
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user