0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-09 14:04:43 +03:00

Fixed code style

This commit is contained in:
Konstantin Makarenkov
2025-03-20 11:12:46 +03:00
parent 47aee66e55
commit c7e4028637
4 changed files with 5 additions and 5 deletions

View File

@@ -252,7 +252,8 @@ void XMLWriter::saveTranslation(QString propertyName, QObject* item, QDomElement
languageNode.appendChild(pageNode);
foreach (ItemTranslation* translationItem, page->itemsTranslation) {
QDomElement itemNode = m_doc->createElement(translationItem->itemName);
foreach (PropertyTranslation* property, translationItem->propertyesTranslation) {
foreach (PropertyTranslation* property,
translationItem->propertyesTranslation) {
if (property->sourceValue.compare(property->value) != 0) {
QDomElement propertyNode = m_doc->createElement(property->propertyName);
propertyNode.setAttribute("Value", property->value);