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

Merge tag '1.7.4' into develop

Finish 1.7.4
This commit is contained in:
Arin Alex
2023-05-01 09:26:49 +03:00
3 changed files with 5 additions and 3 deletions

View File

@@ -80,7 +80,8 @@ bool XMLWriter::setContent(QString fileName)
{
QFile xmlFile(fileName);
if (xmlFile.open(QFile::ReadOnly)){
return m_doc->setContent(&xmlFile);
m_doc->setContent(&xmlFile);
return true;
}
return false;
}